Class SubstituteLogger
- All Implemented Interfaces:
Logger
NOPLogger
. However, a different delegate can be set at any time.
See also the relevant error code documentation.
- Author:
- Chetan Mehrotra, Ceki Gulcu
-
Field Summary
Fields inherited from interface org.slf4j.Logger
ROOT_LOGGER_NAME
-
Constructor Summary
ConstructorDescriptionSubstituteLogger
(String name, Queue<SubstituteLoggingEvent> eventQueue, boolean createdPostInitialization) -
Method Summary
Modifier and TypeMethodDescriptionatDebug()
Entry point for fluent-logging forLevel.DEBUG
level.atError()
Entry point for fluent-logging forLevel.ERROR
level.atInfo()
Entry point for fluent-logging forLevel.INFO
level.Make a newLoggingEventBuilder
instance as appropriate for this logger and the desiredLevel
passed as parameter.atTrace()
Entry point for fluent-logging forLevel.TRACE
level.atWarn()
Entry point for fluent-logging forLevel.WARN
level.void
Log a message at the DEBUG level.void
Log a message at the DEBUG level according to the specified format and argument.void
Log a message at the DEBUG level according to the specified format and arguments.void
Log a message at the DEBUG level according to the specified format and arguments.void
Log an exception (throwable) at the DEBUG level with an accompanying message.void
Log a message with the specific Marker at the DEBUG level.void
This method is similar toLogger.debug(String, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.debug(String, Object...)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.debug(String, Object, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.debug(String, Throwable)
method except that the marker data is also taken into consideration.delegate()
Return the delegate logger instance if set.boolean
void
Log a message at the ERROR level.void
Log a message at the ERROR level according to the specified format and argument.void
Log a message at the ERROR level according to the specified format and arguments.void
Log a message at the ERROR level according to the specified format and arguments.void
Log an exception (throwable) at the ERROR level with an accompanying message.void
Log a message with the specific Marker at the ERROR level.void
This method is similar toLogger.error(String, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.error(String, Object...)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.error(String, Object, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.error(String, Throwable)
method except that the marker data is also taken into consideration.getName()
Return the name of thisLogger
instance.int
hashCode()
void
Log a message at the INFO level.void
Log a message at the INFO level according to the specified format and argument.void
Log a message at the INFO level according to the specified format and arguments.void
Log a message at the INFO level according to the specified format and arguments.void
Log an exception (throwable) at the INFO level with an accompanying message.void
Log a message with the specific Marker at the INFO level.void
This method is similar toLogger.info(String, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.info(String, Object...)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.info(String, Object, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.info(String, Throwable)
method except that the marker data is also taken into consideration.boolean
Is the logger instance enabled for the DEBUG level?boolean
isDebugEnabled
(Marker marker) Similar toLogger.isDebugEnabled()
method except that the marker data is also taken into account.boolean
boolean
boolean
boolean
isEnabledForLevel
(Level level) Returns whether this Logger is enabled for a givenLevel
.boolean
Is the logger instance enabled for the ERROR level?boolean
isErrorEnabled
(Marker marker) Similar toLogger.isErrorEnabled()
method except that the marker data is also taken into consideration.boolean
Is the logger instance enabled for the INFO level?boolean
isInfoEnabled
(Marker marker) Similar toLogger.isInfoEnabled()
method except that the marker data is also taken into consideration.boolean
Is the logger instance enabled for the TRACE level?boolean
isTraceEnabled
(Marker marker) Similar toLogger.isTraceEnabled()
method except that the marker data is also taken into account.boolean
Is the logger instance enabled for the WARN level?boolean
isWarnEnabled
(Marker marker) Similar toLogger.isWarnEnabled()
method except that the marker data is also taken into consideration.void
log
(LoggingEvent event) makeLoggingEventBuilder
(Level level) Make a newLoggingEventBuilder
instance as appropriate for this logger implementation.void
setDelegate
(Logger delegate) Typically called after theLoggerFactory
initialization phase is completed.void
Log a message at the TRACE level.void
Log a message at the TRACE level according to the specified format and argument.void
Log a message at the TRACE level according to the specified format and arguments.void
Log a message at the TRACE level according to the specified format and arguments.void
Log an exception (throwable) at the TRACE level with an accompanying message.void
Log a message with the specific Marker at the TRACE level.void
This method is similar toLogger.trace(String, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.trace(String, Object...)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.trace(String, Object, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.trace(String, Throwable)
method except that the marker data is also taken into consideration.void
Log a message at the WARN level.void
Log a message at the WARN level according to the specified format and argument.void
Log a message at the WARN level according to the specified format and arguments.void
Log a message at the WARN level according to the specified format and arguments.void
Log an exception (throwable) at the WARN level with an accompanying message.void
Log a message with the specific Marker at the WARN level.void
This method is similar toLogger.warn(String, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.warn(String, Object...)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.warn(String, Object, Object)
method except that the marker data is also taken into consideration.void
This method is similar toLogger.warn(String, Throwable)
method except that the marker data is also taken into consideration.
-
Field Details
-
createdPostInitialization
-
-
Constructor Details
-
SubstituteLogger
public SubstituteLogger(String name, Queue<SubstituteLoggingEvent> eventQueue, boolean createdPostInitialization)
-
-
Method Details
-
getName
Description copied from interface:Logger
Return the name of thisLogger
instance. -
makeLoggingEventBuilder
Description copied from interface:Logger
Make a new
LoggingEventBuilder
instance as appropriate for this logger implementation. This default implementation always returns a new instance ofDefaultLoggingEventBuilder
.This method is intended to be used by logging systems implementing the SLF4J API and not by end users.
Also note that a
LoggingEventBuilder
instance should be built for all levels, independently of the level argument. In other words, this method is an unconditional constructor for theLoggingEventBuilder
appropriate for this logger implementation.- Specified by:
makeLoggingEventBuilder
in interfaceLogger
- Parameters:
level
- desired level for the event builder- Returns:
- a new
LoggingEventBuilder
instance as appropriate for this logger
-
atLevel
Description copied from interface:Logger
Make a newLoggingEventBuilder
instance as appropriate for this logger and the desiredLevel
passed as parameter. If this Logger is disabled for the given Level, then aNOPLoggingEventBuilder
is returned.- Specified by:
atLevel
in interfaceLogger
- Parameters:
level
- desired level for the event builder- Returns:
- a new
LoggingEventBuilder
instance as appropriate for this logger
-
isEnabledForLevel
Description copied from interface:Logger
Returns whether this Logger is enabled for a givenLevel
.- Specified by:
isEnabledForLevel
in interfaceLogger
- Parameters:
level
-- Returns:
- true if enabled, false otherwise.
-
isTraceEnabled
Description copied from interface:Logger
Is the logger instance enabled for the TRACE level?- Specified by:
isTraceEnabled
in interfaceLogger
- Returns:
- True if this Logger is enabled for the TRACE level, false otherwise.
-
trace
Description copied from interface:Logger
Log a message at the TRACE level. -
trace
Description copied from interface:Logger
Log a message at the TRACE level according to the specified format and argument.This form avoids superfluous object creation when the logger is disabled for the TRACE level.
-
trace
Description copied from interface:Logger
Log a message at the TRACE level according to the specified format and arguments.This form avoids superfluous object creation when the logger is disabled for the TRACE level.
-
trace
Description copied from interface:Logger
Log a message at the TRACE level according to the specified format and arguments.This form avoids superfluous string concatenation when the logger is disabled for the TRACE level. However, this variant incurs the hidden (and relatively small) cost of creating an
Object[]
before invoking the method, even if this logger is disabled for TRACE. The variants takingone
andtwo
arguments exist solely in order to avoid this hidden cost. -
trace
Description copied from interface:Logger
Log an exception (throwable) at the TRACE level with an accompanying message. -
isTraceEnabled
Description copied from interface:Logger
Similar toLogger.isTraceEnabled()
method except that the marker data is also taken into account.- Specified by:
isTraceEnabled
in interfaceLogger
- Parameters:
marker
- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the TRACE level, false otherwise.
-
trace
Description copied from interface:Logger
Log a message with the specific Marker at the TRACE level. -
trace
Description copied from interface:Logger
This method is similar toLogger.trace(String, Object)
method except that the marker data is also taken into consideration. -
trace
Description copied from interface:Logger
This method is similar toLogger.trace(String, Object, Object)
method except that the marker data is also taken into consideration. -
trace
Description copied from interface:Logger
This method is similar toLogger.trace(String, Object...)
method except that the marker data is also taken into consideration. -
trace
Description copied from interface:Logger
This method is similar toLogger.trace(String, Throwable)
method except that the marker data is also taken into consideration. -
atTrace
Description copied from interface:Logger
Entry point for fluent-logging forLevel.TRACE
level. -
isDebugEnabled
Description copied from interface:Logger
Is the logger instance enabled for the DEBUG level?- Specified by:
isDebugEnabled
in interfaceLogger
- Returns:
- True if this Logger is enabled for the DEBUG level, false otherwise.
-
debug
Description copied from interface:Logger
Log a message at the DEBUG level. -
debug
Description copied from interface:Logger
Log a message at the DEBUG level according to the specified format and argument.This form avoids superfluous object creation when the logger is disabled for the DEBUG level.
-
debug
Description copied from interface:Logger
Log a message at the DEBUG level according to the specified format and arguments.This form avoids superfluous object creation when the logger is disabled for the DEBUG level.
-
debug
Description copied from interface:Logger
Log a message at the DEBUG level according to the specified format and arguments.This form avoids superfluous string concatenation when the logger is disabled for the DEBUG level. However, this variant incurs the hidden (and relatively small) cost of creating an
Object[]
before invoking the method, even if this logger is disabled for DEBUG. The variants takingone
andtwo
arguments exist solely in order to avoid this hidden cost. -
debug
Description copied from interface:Logger
Log an exception (throwable) at the DEBUG level with an accompanying message. -
isDebugEnabled
Description copied from interface:Logger
Similar toLogger.isDebugEnabled()
method except that the marker data is also taken into account.- Specified by:
isDebugEnabled
in interfaceLogger
- Parameters:
marker
- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the DEBUG level, false otherwise.
-
debug
Description copied from interface:Logger
Log a message with the specific Marker at the DEBUG level. -
debug
Description copied from interface:Logger
This method is similar toLogger.debug(String, Object)
method except that the marker data is also taken into consideration. -
debug
Description copied from interface:Logger
This method is similar toLogger.debug(String, Object, Object)
method except that the marker data is also taken into consideration. -
debug
Description copied from interface:Logger
This method is similar toLogger.debug(String, Object...)
method except that the marker data is also taken into consideration. -
debug
Description copied from interface:Logger
This method is similar toLogger.debug(String, Throwable)
method except that the marker data is also taken into consideration. -
atDebug
Description copied from interface:Logger
Entry point for fluent-logging forLevel.DEBUG
level. -
isInfoEnabled
Description copied from interface:Logger
Is the logger instance enabled for the INFO level?- Specified by:
isInfoEnabled
in interfaceLogger
- Returns:
- True if this Logger is enabled for the INFO level, false otherwise.
-
info
Description copied from interface:Logger
Log a message at the INFO level. -
info
Description copied from interface:Logger
Log a message at the INFO level according to the specified format and argument.This form avoids superfluous object creation when the logger is disabled for the INFO level.
-
info
Description copied from interface:Logger
Log a message at the INFO level according to the specified format and arguments.This form avoids superfluous object creation when the logger is disabled for the INFO level.
-
info
Description copied from interface:Logger
Log a message at the INFO level according to the specified format and arguments.This form avoids superfluous string concatenation when the logger is disabled for the INFO level. However, this variant incurs the hidden (and relatively small) cost of creating an
Object[]
before invoking the method, even if this logger is disabled for INFO. The variants takingone
andtwo
arguments exist solely in order to avoid this hidden cost. -
info
Description copied from interface:Logger
Log an exception (throwable) at the INFO level with an accompanying message. -
isInfoEnabled
Description copied from interface:Logger
Similar toLogger.isInfoEnabled()
method except that the marker data is also taken into consideration.- Specified by:
isInfoEnabled
in interfaceLogger
- Parameters:
marker
- The marker data to take into consideration- Returns:
- true if this Logger is enabled for the INFO level, false otherwise.
-
info
Description copied from interface:Logger
Log a message with the specific Marker at the INFO level. -
info
Description copied from interface:Logger
This method is similar toLogger.info(String, Object)
method except that the marker data is also taken into consideration. -
info
Description copied from interface:Logger
This method is similar toLogger.info(String, Object, Object)
method except that the marker data is also taken into consideration. -
info
Description copied from interface:Logger
This method is similar toLogger.info(String, Object...)
method except that the marker data is also taken into consideration. -
info
Description copied from interface:Logger
This method is similar toLogger.info(String, Throwable)
method except that the marker data is also taken into consideration. -
atInfo
Description copied from interface:Logger
Entry point for fluent-logging forLevel.INFO
level. -
isWarnEnabled
Description copied from interface:Logger
Is the logger instance enabled for the WARN level?- Specified by:
isWarnEnabled
in interfaceLogger
- Returns:
- True if this Logger is enabled for the WARN level, false otherwise.
-
warn
Description copied from interface:Logger
Log a message at the WARN level. -
warn
Description copied from interface:Logger
Log a message at the WARN level according to the specified format and argument.This form avoids superfluous object creation when the logger is disabled for the WARN level.
-
warn
Description copied from interface:Logger
Log a message at the WARN level according to the specified format and arguments.This form avoids superfluous object creation when the logger is disabled for the WARN level.
-
warn
Description copied from interface:Logger
Log a message at the WARN level according to the specified format and arguments.This form avoids superfluous string concatenation when the logger is disabled for the WARN level. However, this variant incurs the hidden (and relatively small) cost of creating an
Object[]
before invoking the method, even if this logger is disabled for WARN. The variants takingone
andtwo
arguments exist solely in order to avoid this hidden cost. -
warn
Description copied from interface:Logger
Log an exception (throwable) at the WARN level with an accompanying message. -
isWarnEnabled
Description copied from interface:Logger
Similar toLogger.isWarnEnabled()
method except that the marker data is also taken into consideration.- Specified by:
isWarnEnabled
in interfaceLogger
- Parameters:
marker
- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the WARN level, false otherwise.
-
warn
Description copied from interface:Logger
Log a message with the specific Marker at the WARN level. -
warn
Description copied from interface:Logger
This method is similar toLogger.warn(String, Object)
method except that the marker data is also taken into consideration. -
warn
Description copied from interface:Logger
This method is similar toLogger.warn(String, Object, Object)
method except that the marker data is also taken into consideration. -
warn
Description copied from interface:Logger
This method is similar toLogger.warn(String, Object...)
method except that the marker data is also taken into consideration. -
warn
Description copied from interface:Logger
This method is similar toLogger.warn(String, Throwable)
method except that the marker data is also taken into consideration. -
atWarn
Description copied from interface:Logger
Entry point for fluent-logging forLevel.WARN
level. -
isErrorEnabled
Description copied from interface:Logger
Is the logger instance enabled for the ERROR level?- Specified by:
isErrorEnabled
in interfaceLogger
- Returns:
- True if this Logger is enabled for the ERROR level, false otherwise.
-
error
Description copied from interface:Logger
Log a message at the ERROR level. -
error
Description copied from interface:Logger
Log a message at the ERROR level according to the specified format and argument.This form avoids superfluous object creation when the logger is disabled for the ERROR level.
-
error
Description copied from interface:Logger
Log a message at the ERROR level according to the specified format and arguments.This form avoids superfluous object creation when the logger is disabled for the ERROR level.
-
error
Description copied from interface:Logger
Log a message at the ERROR level according to the specified format and arguments.This form avoids superfluous string concatenation when the logger is disabled for the ERROR level. However, this variant incurs the hidden (and relatively small) cost of creating an
Object[]
before invoking the method, even if this logger is disabled for ERROR. The variants takingone
andtwo
arguments exist solely in order to avoid this hidden cost. -
error
Description copied from interface:Logger
Log an exception (throwable) at the ERROR level with an accompanying message. -
isErrorEnabled
Description copied from interface:Logger
Similar toLogger.isErrorEnabled()
method except that the marker data is also taken into consideration.- Specified by:
isErrorEnabled
in interfaceLogger
- Parameters:
marker
- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the ERROR level, false otherwise.
-
error
Description copied from interface:Logger
Log a message with the specific Marker at the ERROR level. -
error
Description copied from interface:Logger
This method is similar toLogger.error(String, Object)
method except that the marker data is also taken into consideration. -
error
Description copied from interface:Logger
This method is similar toLogger.error(String, Object, Object)
method except that the marker data is also taken into consideration. -
error
Description copied from interface:Logger
This method is similar toLogger.error(String, Object...)
method except that the marker data is also taken into consideration. -
error
Description copied from interface:Logger
This method is similar toLogger.error(String, Throwable)
method except that the marker data is also taken into consideration. -
atError
Description copied from interface:Logger
Entry point for fluent-logging forLevel.ERROR
level. -
equals
-
hashCode
-
delegate
Return the delegate logger instance if set. Otherwise, return aNOPLogger
instance. -
setDelegate
Typically called after theLoggerFactory
initialization phase is completed.- Parameters:
delegate
-
-
isDelegateEventAware
-
log
-
isDelegateNull
-
isDelegateNOP
-