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

net.hasor.cobble.logging.log4j2.Logger4J2Impl Maven / Gradle / Ivy

/*
 *    Copyright 2009-2021 the original author or authors.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package net.hasor.cobble.logging.log4j2;

import net.hasor.cobble.logging.Logger;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.spi.AbstractLogger;

/**
 * 

copy form mybatis org.apache.ibatis.logging.log4j2.Log4j2Impl

* @author Eduardo Macarron */ public class Logger4J2Impl implements Logger { private final Logger logger; public Logger4J2Impl(String clazz) { org.apache.logging.log4j.Logger logger = LogManager.getLogger(clazz); if (logger instanceof AbstractLogger) { this.logger = new Logger4J2AbstractLoggerImpl((AbstractLogger) logger); } else { this.logger = new Logger4J2LoggerImpl(logger); } } @Override public boolean isDebugEnabled() { return logger.isDebugEnabled(); } @Override public boolean isTraceEnabled() { return logger.isTraceEnabled(); } @Override public void error(String s, Throwable e) { logger.error(s, e); } @Override public void error(String s) { logger.error(s); } @Override public void debug(String s) { logger.debug(s); } @Override public void info(String s) { logger.info(s); } @Override public void trace(String s) { logger.trace(s); } @Override public void warn(String s) { logger.warn(s); } @Override public void warn(String s, Throwable e) { logger.warn(s, e); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy