
com.star.log.dialect.log4j.Log4jLogFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.log.dialect.log4j;
import com.star.log.Log;
import com.star.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 - 2025 Weber Informatics LLC | Privacy Policy