All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.log.dialect.tinylog.TinyLogFactory Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.log.dialect.tinylog;

import cn.hutool.log.Log;
import cn.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 TinyLog(name); } @Override public Log createLog(Class clazz) { return new TinyLog(clazz); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy