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

cn.dreampie.common.log.Slf4jLogFactory Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package cn.dreampie.common.log;

import com.jfinal.log.ILoggerFactory;
import com.jfinal.log.Logger;

/**
 * Created by wangrenhui on 14-1-3.
 */
public class Slf4jLogFactory implements ILoggerFactory {
    @Override
    public Logger getLogger(Class clazz) {
        return new Slf4jLogger(clazz);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy