com.dahuatech.hutool.log.dialect.tinylog.TinyLogFactory 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.tinylog;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
/**
* TinyLog log.
*
* @author Looly
*/
public class TinyLogFactory extends LogFactory {
/** 构造 */
public TinyLogFactory() {
super("TinyLog");
checkLogExist(org.pmw.tinylog.Logger.class);
}
@Override
public Log createLog(String name) {
return new com.dahuatech.hutool.log.dialect.tinylog.TinyLog(name);
}
@Override
public Log createLog(Class> clazz) {
return new TinyLog(clazz);
}
}