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

cn.hutool.log.dialect.log4j.Log4jLogFactory Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.log.dialect.log4j;

import cn.hutool.log.Log;
import cn.hutool.log.LogFactory;

/**
 * Apache Log4J log.
* @author Looly * */ public class Log4jLogFactory extends LogFactory{ public Log4jLogFactory() { super("Log4j"); checkLogExist(org.apache.log4j.Logger.class); } @Override public Log createLog(String name) { return new Log4jLog(name); } @Override public Log createLog(Class clazz) { return new Log4jLog(clazz); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy