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

net.hasor.cobble.logging.slf4j.Slf4jLocationAwareLoggerImpl 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.slf4j;

import net.hasor.cobble.logging.Logger;
import net.hasor.cobble.logging.LoggerFactory;
import org.slf4j.Marker;
import org.slf4j.MarkerFactory;
import org.slf4j.spi.LocationAwareLogger;

/**
 * 

copy form mybatis org.apache.ibatis.logging.slf4j.Slf4jImpl

* @author Eduardo Macarron */ class Slf4jLocationAwareLoggerImpl implements Logger { private static final Marker MARKER = MarkerFactory.getMarker(LoggerFactory.MARKER); private static final String FQCN = Slf4jImpl.class.getName(); private final LocationAwareLogger logger; Slf4jLocationAwareLoggerImpl(LocationAwareLogger 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.log(MARKER, FQCN, LocationAwareLogger.ERROR_INT, s, null, e); } @Override public void error(String s) { logger.log(MARKER, FQCN, LocationAwareLogger.ERROR_INT, s, null, null); } @Override public void debug(String s) { logger.log(MARKER, FQCN, LocationAwareLogger.DEBUG_INT, s, null, null); } @Override public void info(String s) { logger.log(MARKER, FQCN, LocationAwareLogger.INFO_INT, s, null, null); } @Override public void trace(String s) { logger.log(MARKER, FQCN, LocationAwareLogger.TRACE_INT, s, null, null); } @Override public void warn(String s) { logger.log(MARKER, FQCN, LocationAwareLogger.WARN_INT, s, null, null); } @Override public void warn(String s, Throwable e) { logger.log(MARKER, FQCN, LocationAwareLogger.WARN_INT, s, null, e); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy