com.dahuatech.hutool.log.dialect.jboss.JbossLogFactory 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.jboss;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
/**
* Jboss-Logging log.
*
* @author Looly
* @since 4.1.21
*/
public class JbossLogFactory extends LogFactory {
/** 构造 */
public JbossLogFactory() {
super("JBoss Logging");
checkLogExist(org.jboss.logging.Logger.class);
}
@Override
public Log createLog(String name) {
return new com.dahuatech.hutool.log.dialect.jboss.JbossLog(name);
}
@Override
public Log createLog(Class> clazz) {
return new JbossLog(clazz);
}
}