
com.star.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 utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.log.dialect.tinylog;
import com.star.log.Log;
import com.star.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 TinyLog(name);
}
@Override
public Log createLog(Class> clazz) {
return new TinyLog(clazz);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy