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

org.slf4j.impl.SolonLoggerFactory Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package org.slf4j.impl;

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

/**
 * @author noear
 * @since 1.0
 */
public enum SolonLoggerFactory implements ILoggerFactory {
    /**
     * 工厂单例
     */
    INSTANCE;

    SolonLoggerFactory() {

    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy