com.dahuatech.hutool.log.dialect.commons.ApacheCommonsLogFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.log.dialect.commons;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
/**
* Apache Commons Logging
*
* @author Looly
*/
public class ApacheCommonsLogFactory extends LogFactory {
public ApacheCommonsLogFactory() {
super("Apache Common Logging");
checkLogExist(org.apache.commons.logging.LogFactory.class);
}
@Override
public Log createLog(String name) {
try {
return new com.dahuatech.hutool.log.dialect.commons.ApacheCommonsLog4JLog(name);
} catch (Exception e) {
return new com.dahuatech.hutool.log.dialect.commons.ApacheCommonsLog(name);
}
}
@Override
public Log createLog(Class> clazz) {
try {
return new ApacheCommonsLog4JLog(clazz);
} catch (Exception e) {
return new ApacheCommonsLog(clazz);
}
}
@Override
protected void checkLogExist(Class> logClassName) {
super.checkLogExist(logClassName);
// Commons Logging在调用getLog时才检查是否有日志实现,在此提前检查,如果没有实现则跳过之
getLog(ApacheCommonsLogFactory.class);
}
}