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

com.xiaoleilu.hutool.log.dialect.log4j2.Log4j2LogFactory Maven / Gradle / Ivy

package com.xiaoleilu.hutool.log.dialect.log4j2;

import com.xiaoleilu.hutool.log.Log;
import com.xiaoleilu.hutool.log.LogFactory;

/**
 * Apache Log4J 2 log.
* @author Looly * */ public class Log4j2LogFactory extends LogFactory{ public Log4j2LogFactory() { super("Log4j2"); } @Override public Log getLog(String name) { return new Log4j2Log(name); } @Override public Log getLog(Class clazz) { return new Log4j2Log(clazz); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy