com.landawn.abacus.logging.SLF4JLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general and simple library for Android
/*
* Copyright (C) 2015 HaiYang Li
*
* 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 com.landawn.abacus.logging;
import static org.slf4j.spi.LocationAwareLogger.ERROR_INT;
import static org.slf4j.spi.LocationAwareLogger.WARN_INT;
import org.slf4j.helpers.NOPLoggerFactory;
import org.slf4j.spi.LocationAwareLogger;
import com.landawn.abacus.exception.AbacusException;
import com.landawn.abacus.util.function.Supplier;
/**
*
* @since 0.8
*
* @author Haiyang Li
*/
class SLF4JLogger extends AbstractLogger {
private static final String FQCN = SLF4JLogger.class.getName();
private final org.slf4j.Logger loggerImpl;
private final LocationAwareLogger locationAwareLogger;
public SLF4JLogger(String name) {
super(name);
if (org.slf4j.LoggerFactory.getILoggerFactory() instanceof NOPLoggerFactory) {
throw new AbacusException("Failed to initilze SLF4J Logger Factory");
}
loggerImpl = org.slf4j.LoggerFactory.getLogger(name);
locationAwareLogger = loggerImpl instanceof LocationAwareLogger ? ((LocationAwareLogger) loggerImpl) : null;
}
@Override
public boolean isTraceEnabled() {
return loggerImpl.isTraceEnabled();
}
@Override
public void trace(String msg) {
loggerImpl.trace(msg);
}
@Override
public void trace(String msg, Throwable t) {
loggerImpl.trace(msg, t);
}
@Override
public boolean isDebugEnabled() {
return loggerImpl.isDebugEnabled();
}
@Override
public void debug(String msg) {
loggerImpl.debug(msg);
}
@Override
public void debug(String msg, Throwable t) {
loggerImpl.debug(msg, t);
}
@Override
public boolean isInfoEnabled() {
return loggerImpl.isInfoEnabled();
}
@Override
public void info(String msg) {
loggerImpl.info(msg);
}
@Override
public void info(String msg, Throwable t) {
loggerImpl.info(msg, t);
}
@Override
public boolean isWarnEnabled() {
return loggerImpl.isWarnEnabled();
}
@Override
public void warn(String msg) {
if (locationAwareLogger == null) {
loggerImpl.warn(msg);
} else {
locationAwareLogger.log(null, FQCN, WARN_INT, msg, null, null);
}
}
@Override
public void warn(String msg, Throwable t) {
if (locationAwareLogger == null) {
loggerImpl.warn(msg, t);
} else {
locationAwareLogger.log(null, FQCN, WARN_INT, msg, null, t);
}
}
@Override
public boolean isErrorEnabled() {
return loggerImpl.isErrorEnabled();
}
@Override
public void error(String msg) {
if (locationAwareLogger == null) {
loggerImpl.error(msg);
} else {
locationAwareLogger.log(null, FQCN, ERROR_INT, msg, null, null);
}
}
@Override
public void error(String msg, Throwable t) {
if (locationAwareLogger == null) {
loggerImpl.error(msg, t);
} else {
locationAwareLogger.log(null, FQCN, ERROR_INT, msg, null, t);
}
}
@Override
public void trace(String template, Object arg) {
if (isTraceEnabled()) {
trace(format(template, arg));
}
}
@Override
public void trace(String template, Object arg1, Object arg2) {
if (isTraceEnabled()) {
trace(format(template, arg1, arg2));
}
}
@Override
public void trace(String template, Object arg1, Object arg2, Object arg3) {
if (isTraceEnabled()) {
trace(format(template, arg1, arg2, arg3));
}
}
@Override
@SafeVarargs
public final void trace(String template, Object... args) {
if (isTraceEnabled()) {
trace(format(template, args));
}
}
@Override
public void trace(Throwable t, String msg) {
trace(msg, t);
}
@Override
public void trace(Throwable t, String template, Object arg) {
if (isTraceEnabled()) {
trace(t, format(template, arg));
}
}
@Override
public void trace(Throwable t, String template, Object arg1, Object arg2) {
if (isTraceEnabled()) {
trace(t, format(template, arg1, arg2));
}
}
@Override
public void trace(Throwable t, String template, Object arg1, Object arg2, Object arg3) {
if (isTraceEnabled()) {
trace(t, format(template, arg1, arg2, arg3));
}
}
@Override
public void trace(Supplier supplier) {
if (isTraceEnabled()) {
trace(supplier.get());
}
}
@Override
public void trace(Supplier supplier, Throwable t) {
if (isTraceEnabled()) {
trace(t, supplier.get());
}
}
@Override
public void trace(Throwable t, Supplier supplier) {
if (isTraceEnabled()) {
trace(t, supplier.get());
}
}
@Override
public void debug(String template, Object arg) {
if (isDebugEnabled()) {
debug(format(template, arg));
}
}
@Override
public void debug(String template, Object arg1, Object arg2) {
if (isDebugEnabled()) {
debug(format(template, arg1, arg2));
}
}
@Override
public void debug(String template, Object arg1, Object arg2, Object arg3) {
if (isDebugEnabled()) {
debug(format(template, arg1, arg2, arg3));
}
}
@Override
@SafeVarargs
public final void debug(String template, Object... args) {
if (isDebugEnabled()) {
debug(format(template, args));
}
}
@Override
public void debug(Throwable t, String msg) {
debug(msg, t);
}
@Override
public void debug(Throwable t, String template, Object arg) {
if (isDebugEnabled()) {
debug(t, format(template, arg));
}
}
@Override
public void debug(Throwable t, String template, Object arg1, Object arg2) {
if (isDebugEnabled()) {
debug(t, format(template, arg1, arg2));
}
}
@Override
public void debug(Throwable t, String template, Object arg1, Object arg2, Object arg3) {
if (isDebugEnabled()) {
debug(t, format(template, arg1, arg2, arg3));
}
}
@Override
public void debug(Supplier supplier) {
if (isDebugEnabled()) {
debug(supplier.get());
}
}
@Override
public void debug(Supplier supplier, Throwable t) {
if (isDebugEnabled()) {
debug(t, supplier.get());
}
}
@Override
public void debug(Throwable t, Supplier supplier) {
if (isDebugEnabled()) {
debug(t, supplier.get());
}
}
@Override
public void info(String template, Object arg) {
if (isInfoEnabled()) {
info(format(template, arg));
}
}
@Override
public void info(String template, Object arg1, Object arg2) {
if (isInfoEnabled()) {
info(format(template, arg1, arg2));
}
}
@Override
public void info(String template, Object arg1, Object arg2, Object arg3) {
if (isInfoEnabled()) {
info(format(template, arg1, arg2, arg3));
}
}
@Override
@SafeVarargs
public final void info(String template, Object... args) {
if (isInfoEnabled()) {
info(format(template, args));
}
}
@Override
public void info(Throwable t, String msg) {
info(msg, t);
}
@Override
public void info(Throwable t, String template, Object arg) {
if (isInfoEnabled()) {
info(t, format(template, arg));
}
}
@Override
public void info(Throwable t, String template, Object arg1, Object arg2) {
if (isInfoEnabled()) {
info(t, format(template, arg1, arg2));
}
}
@Override
public void info(Throwable t, String template, Object arg1, Object arg2, Object arg3) {
if (isInfoEnabled()) {
info(t, format(template, arg1, arg2, arg3));
}
}
@Override
public void info(Supplier supplier) {
if (isInfoEnabled()) {
info(supplier.get());
}
}
@Override
public void info(Supplier supplier, Throwable t) {
if (isInfoEnabled()) {
info(t, supplier.get());
}
}
@Override
public void info(Throwable t, Supplier supplier) {
if (isInfoEnabled()) {
info(t, supplier.get());
}
}
@Override
public void warn(String template, Object arg) {
if (isWarnEnabled()) {
warn(format(template, arg));
}
}
@Override
public void warn(String template, Object arg1, Object arg2) {
if (isWarnEnabled()) {
warn(format(template, arg1, arg2));
}
}
@Override
public void warn(String template, Object arg1, Object arg2, Object arg3) {
if (isWarnEnabled()) {
warn(format(template, arg1, arg2, arg3));
}
}
@Override
@SafeVarargs
public final void warn(String template, Object... args) {
if (isWarnEnabled()) {
warn(format(template, args));
}
}
@Override
public void warn(Throwable t, String msg) {
warn(msg, t);
}
@Override
public void warn(Throwable t, String template, Object arg) {
if (isWarnEnabled()) {
warn(t, format(template, arg));
}
}
@Override
public void warn(Throwable t, String template, Object arg1, Object arg2) {
if (isWarnEnabled()) {
warn(t, format(template, arg1, arg2));
}
}
@Override
public void warn(Throwable t, String template, Object arg1, Object arg2, Object arg3) {
if (isWarnEnabled()) {
warn(t, format(template, arg1, arg2, arg3));
}
}
@Override
public void warn(Supplier supplier) {
if (isWarnEnabled()) {
warn(supplier.get());
}
}
@Override
public void warn(Supplier supplier, Throwable t) {
if (isWarnEnabled()) {
warn(t, supplier.get());
}
}
@Override
public void warn(Throwable t, Supplier supplier) {
if (isWarnEnabled()) {
warn(t, supplier.get());
}
}
@Override
public void error(String template, Object arg) {
if (isErrorEnabled()) {
error(format(template, arg));
}
}
@Override
public void error(String template, Object arg1, Object arg2) {
if (isErrorEnabled()) {
error(format(template, arg1, arg2));
}
}
@Override
public void error(String template, Object arg1, Object arg2, Object arg3) {
if (isErrorEnabled()) {
error(format(template, arg1, arg2, arg3));
}
}
@Override
@SafeVarargs
public final void error(String template, Object... args) {
if (isErrorEnabled()) {
error(format(template, args));
}
}
@Override
public void error(Throwable t, String msg) {
error(msg, t);
}
@Override
public void error(Throwable t, String template, Object arg) {
if (isErrorEnabled()) {
error(t, format(template, arg));
}
}
@Override
public void error(Throwable t, String template, Object arg1, Object arg2) {
if (isErrorEnabled()) {
error(t, format(template, arg1, arg2));
}
}
@Override
public void error(Throwable t, String template, Object arg1, Object arg2, Object arg3) {
if (isErrorEnabled()) {
error(t, format(template, arg1, arg2, arg3));
}
}
@Override
public void error(Supplier supplier) {
if (isErrorEnabled()) {
error(supplier.get());
}
}
@Override
public void error(Supplier supplier, Throwable t) {
if (isErrorEnabled()) {
error(t, supplier.get());
}
}
@Override
public void error(Throwable t, Supplier supplier) {
if (isErrorEnabled()) {
error(t, supplier.get());
}
}
}