All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sdklite.sphere.logging.binding.logcat.LogcatLoggerFactory Maven / Gradle / Ivy

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