com.genexus.specific.android.LogManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxandroid Show documentation
Show all versions of gxandroid Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.specific.android;
import com.genexus.common.interfaces.IExtensionLogManager;
import com.genexus.diagnostics.core.ILogger;
public class LogManager implements IExtensionLogManager {
@Override
public ILogger getLogger(Class> clazz) {
return new com.genexus.diagnostics.core.provider.AndroidLogger();
}
@Override
public ILogger getLogger(String className) {
return new com.genexus.diagnostics.core.provider.AndroidLogger();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy