com.dahuatech.hutool.log.dialect.console.ConsoleLogFactory 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.console;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
/**
* 利用System.out.println()打印日志
*
* @author Looly
*/
public class ConsoleLogFactory extends LogFactory {
public ConsoleLogFactory() {
super("ICC Console Logging");
}
@Override
public Log createLog(String name) {
return new com.dahuatech.hutool.log.dialect.console.ConsoleLog(name);
}
@Override
public Log createLog(Class> clazz) {
return new ConsoleLog(clazz);
}
}