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

net.hasor.cobble.logging.log4j2.Logger4J2LoggerImpl 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 net.hasor.cobble.logging.LoggerFactory;
import org.apache.logging.log4j.Marker;
import org.apache.logging.log4j.MarkerManager;

/**
 * 

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

* @author Eduardo Macarron */ public class Logger4J2LoggerImpl implements Logger { private static final Marker MARKER = MarkerManager.getMarker(LoggerFactory.MARKER); private final org.apache.logging.log4j.Logger logger; public Logger4J2LoggerImpl(org.apache.logging.log4j.Logger logger) { this.logger = 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(MARKER, s, e); } @Override public void error(String s) { logger.error(MARKER, s); } @Override public void debug(String s) { logger.debug(MARKER, s); } @Override public void info(String s) { logger.info(s); } @Override public void trace(String s) { logger.trace(MARKER, s); } @Override public void warn(String s) { logger.warn(MARKER, s); } @Override public void warn(String s, Throwable e) { logger.warn(MARKER, s, e); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy