Package org.slf4j.spi
Interface LocationAwareLogger
-
- All Superinterfaces:
Logger
- All Known Implementing Classes:
Logger
@Deprecated(since="2022-01-27") public interface LocationAwareLogger extends Logger
Deprecated.This internal log4j API is not supported by AEM as a Cloud Service.An optional interface helping integration with logging systems capable of extracting location information. This interface is mainly used by SLF4J bridges such as jcl-over-slf4j, jul-to-slf4j and log4j-over-slf4j orLogger
wrappers which need to provide hints so that the underlying logging system can extract the correct location information (method name, line number).- Since:
- 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
log(Marker marker, java.lang.String fqcn, int level, java.lang.String message, java.lang.Object[] argArray, java.lang.Throwable t)
Deprecated.Printing method with support for location information.-
Methods inherited from interface org.slf4j.Logger
debug, debug, debug, debug, debug, debug, debug, debug, debug, debug, error, error, error, error, error, error, error, error, error, error, getName, info, info, info, info, info, info, info, info, info, info, isDebugEnabled, isDebugEnabled, isErrorEnabled, isErrorEnabled, isInfoEnabled, isInfoEnabled, isTraceEnabled, isTraceEnabled, isWarnEnabled, isWarnEnabled, trace, trace, trace, trace, trace, trace, trace, trace, trace, trace, warn, warn, warn, warn, warn, warn, warn, warn, warn, warn
-
-
-
-
Field Detail
-
TRACE_INT
static final int TRACE_INT
Deprecated.- See Also:
- Constant Field Values
-
DEBUG_INT
static final int DEBUG_INT
Deprecated.- See Also:
- Constant Field Values
-
INFO_INT
static final int INFO_INT
Deprecated.- See Also:
- Constant Field Values
-
WARN_INT
static final int WARN_INT
Deprecated.- See Also:
- Constant Field Values
-
ERROR_INT
static final int ERROR_INT
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
log
void log(Marker marker, java.lang.String fqcn, int level, java.lang.String message, java.lang.Object[] argArray, java.lang.Throwable t)
Deprecated.Printing method with support for location information.- Parameters:
marker
- The marker to be used for this event, may be null.fqcn
- The fully qualified class name of the logger instance, typically the logger class, logger bridge or a logger wrapper.level
- One of the level integers defined in this interfacemessage
- The message for the log eventt
- Throwable associated with the log event, may be null.
-
-