| org.slf4j.spi.LocationAwareLogger
All known Subclasses: org.slf4j.impl.JDK14LoggerAdapter, org.slf4j.impl.Log4jLoggerAdapter,
LocationAwareLogger | public interface LocationAwareLogger extends Logger(Code) | | An optional interface helping integration with logging systems capable of
extracting location information. This interface is mainly used by SLF4J bridges
such as jcl104-over-slf4j which need to provide hints so that the underlying logging
system can extract the correct locatin information (method name, line number, etc.).
author: Ceki Gulcu since: 1.3 |
Method Summary | |
public void | log(Marker marker, String fqcn, int level, String message, Throwable t) Printing method which support for location information. |
DEBUG_INT | final public int DEBUG_INT(Code) | | |
ERROR_INT | final public int ERROR_INT(Code) | | |
INFO_INT | final public int INFO_INT(Code) | | |
TRACE_INT | final public int TRACE_INT(Code) | | |
WARN_INT | final public int WARN_INT(Code) | | |
log | public void log(Marker marker, String fqcn, int level, String message, Throwable t)(Code) | | Printing method which support for location information.
Parameters: marker - Parameters: fqcn - The fully qualified class name of the caller Parameters: level - Parameters: message - Parameters: t - |
|
|