![JAR search and dependency download from the Maven repository](/logo.png)
net.hasor.cobble.logging.slf4j.Slf4jLoggerImpl 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;
/**
* copy form mybatis org.apache.ibatis.logging.slf4j.Slf4jLoggerImpl
* @author Eduardo Macarron
*/
class Slf4jLoggerImpl implements Logger {
private final org.slf4j.Logger logger;
public Slf4jLoggerImpl(org.slf4j.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(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