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

com.star.log.dialect.tinylog.TinyLogFactory Maven / Gradle / Ivy

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