com.sdklite.sphere.logging.binding.logcat.LogcatLoggerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sphere-logging-binding-logcat Show documentation
Show all versions of sphere-logging-binding-logcat Show documentation
The sphere logging SPI logcat binding
The newest version!
package com.sdklite.sphere.logging.binding.logcat;
import com.sdklite.sphere.logging.Logger;
import com.sdklite.sphere.logging.spi.LoggerFactory;
/**
* The logcat logger factory
*
* @author johnsonlee
* @since 1.0.0
*/
public class LogcatLoggerFactory implements LoggerFactory {
@Override
public Logger newLogger(final String name) {
return new LogcatLogger(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy