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

cool.scx.logging.spi.slf4j.ScxSLF4JLoggerFactory Maven / Gradle / Ivy

There is a newer version: 2.7.4
Show newest version
package cool.scx.logging.spi.slf4j;

import org.slf4j.ILoggerFactory;
import org.slf4j.Logger;

/**
 * ScxSLF4JLoggerFactory
 *
 * @author scx567888
 * @version 0.0.1
 */
public final class ScxSLF4JLoggerFactory implements ILoggerFactory {

    @Override
    public Logger getLogger(String name) {
        return new ScxSLF4JLogger(name);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy