org.mongodb.diagnostics.logging.SLF4JLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoFS Show documentation
Show all versions of mongoFS Show documentation
An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports.
Compressed file storage, zip files, temporary files
/*
* Copyright (c) 2008-2014 MongoDB, Inc.
*
* 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 org.mongodb.diagnostics.logging;
import org.slf4j.LoggerFactory;
public class SLF4JLogger implements Logger {
private final org.slf4j.Logger delegate;
public SLF4JLogger(final String name) {
this.delegate = LoggerFactory.getLogger(name);
}
@Override
public String getName() {
return delegate.getName();
}
@Override
public boolean isTraceEnabled() {
return delegate.isTraceEnabled();
}
@Override
public void trace(final String msg) {
delegate.trace(msg);
}
@Override
public void trace(final String msg, final Throwable t) {
delegate.trace(msg, t);
}
@Override
public boolean isDebugEnabled() {
return delegate.isDebugEnabled();
}
@Override
public void debug(final String msg) {
delegate.debug(msg);
}
@Override
public void debug(final String msg, final Throwable t) {
delegate.debug(msg, t);
}
@Override
public boolean isInfoEnabled() {
return delegate.isInfoEnabled();
}
@Override
public void info(final String msg) {
delegate.info(msg);
}
@Override
public void info(final String msg, final Throwable t) {
delegate.info(msg, t);
}
@Override
public boolean isWarnEnabled() {
return delegate.isWarnEnabled();
}
@Override
public void warn(final String msg) {
delegate.warn(msg);
}
@Override
public void warn(final String msg, final Throwable t) {
delegate.warn(msg, t);
}
@Override
public boolean isErrorEnabled() {
return delegate.isErrorEnabled();
}
@Override
public void error(final String msg) {
delegate.error(msg);
}
@Override
public void error(final String msg, final Throwable t) {
delegate.error(msg, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy