Class EventRecodingLogger
- All Implemented Interfaces:
Logger
SubstituteLogger.-
Field Summary
Fields inherited from interface org.slf4j.Logger
ROOT_LOGGER_NAME -
Constructor Summary
ConstructorsConstructorDescriptionEventRecodingLogger(SubstituteLogger logger, Queue<SubstituteLoggingEvent> eventQueue) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.Log a message at the DEBUG level.voidDeprecated.Log a message at the DEBUG level according to the specified format and argument.voidDeprecated.Log a message at the DEBUG level according to the specified format and arguments.voidDeprecated.Log a message at the DEBUG level according to the specified format and arguments.voidDeprecated.Log an exception (throwable) at the DEBUG level with an accompanying message.voidDeprecated.Log a message with the specific Marker at the DEBUG level.voidDeprecated.This method is similar toLogger.debug(String, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.debug(String, Object...)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.debug(String, Object, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.debug(String, Throwable)method except that the marker data is also taken into consideration.voidDeprecated.Log a message at the ERROR level.voidDeprecated.Log a message at the ERROR level according to the specified format and argument.voidDeprecated.Log a message at the ERROR level according to the specified format and arguments.voidDeprecated.Log a message at the ERROR level according to the specified format and arguments.voidDeprecated.Log an exception (throwable) at the ERROR level with an accompanying message.voidDeprecated.Log a message with the specific Marker at the ERROR level.voidDeprecated.This method is similar toLogger.error(String, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.error(String, Object...)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.error(String, Object, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.error(String, Throwable)method except that the marker data is also taken into consideration.getName()Deprecated.Return the name of thisLoggerinstance.voidDeprecated.Log a message at the INFO level.voidDeprecated.Log a message at the INFO level according to the specified format and argument.voidDeprecated.Log a message at the INFO level according to the specified format and arguments.voidDeprecated.Log a message at the INFO level according to the specified format and arguments.voidDeprecated.Log an exception (throwable) at the INFO level with an accompanying message.voidDeprecated.Log a message with the specific Marker at the INFO level.voidDeprecated.This method is similar toLogger.info(String, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.info(String, Object...)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.info(String, Object, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.info(String, Throwable)method except that the marker data is also taken into consideration.booleanDeprecated.Is the logger instance enabled for the DEBUG level?booleanisDebugEnabled(Marker marker) Deprecated.Similar toLogger.isDebugEnabled()method except that the marker data is also taken into account.booleanDeprecated.Is the logger instance enabled for the ERROR level?booleanisErrorEnabled(Marker marker) Deprecated.Similar toLogger.isErrorEnabled()method except that the marker data is also taken into consideration.booleanDeprecated.Is the logger instance enabled for the INFO level?booleanisInfoEnabled(Marker marker) Deprecated.Similar toLogger.isInfoEnabled()method except that the marker data is also taken into consideration.booleanDeprecated.Is the logger instance enabled for the TRACE level?booleanisTraceEnabled(Marker marker) Deprecated.Similar toLogger.isTraceEnabled()method except that the marker data is also taken into account.booleanDeprecated.Is the logger instance enabled for the WARN level?booleanisWarnEnabled(Marker marker) Deprecated.Similar toLogger.isWarnEnabled()method except that the marker data is also taken into consideration.voidDeprecated.Log a message at the TRACE level.voidDeprecated.Log a message at the TRACE level according to the specified format and argument.voidDeprecated.Log a message at the TRACE level according to the specified format and arguments.voidDeprecated.Log a message at the TRACE level according to the specified format and arguments.voidDeprecated.Log an exception (throwable) at the TRACE level with an accompanying message.voidDeprecated.Log a message with the specific Marker at the TRACE level.voidDeprecated.This method is similar toLogger.trace(String, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.trace(String, Object...)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.trace(String, Object, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.trace(String, Throwable)method except that the marker data is also taken into consideration.voidDeprecated.Log a message at the WARN level.voidDeprecated.Log a message at the WARN level according to the specified format and argument.voidDeprecated.Log a message at the WARN level according to the specified format and arguments.voidDeprecated.Log a message at the WARN level according to the specified format and arguments.voidDeprecated.Log an exception (throwable) at the WARN level with an accompanying message.voidDeprecated.Log a message with the specific Marker at the WARN level.voidDeprecated.This method is similar toLogger.warn(String, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.warn(String, Object...)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.warn(String, Object, Object)method except that the marker data is also taken into consideration.voidDeprecated.This method is similar toLogger.warn(String, Throwable)method except that the marker data is also taken into consideration.
-
Constructor Details
-
EventRecodingLogger
Deprecated.
-
-
Method Details
-
getName
Deprecated.Description copied from interface:LoggerReturn the name of thisLoggerinstance. -
isTraceEnabled
public boolean isTraceEnabled()Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the TRACE level?- Specified by:
isTraceEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the TRACE level, false otherwise.
-
trace
Deprecated.Description copied from interface:LoggerLog a message at the TRACE level. -
trace
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost. -
trace
Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the TRACE level with an accompanying message. -
isTraceEnabled
Deprecated.Description copied from interface:LoggerSimilar toLogger.isTraceEnabled()method except that the marker data is also taken into account.- Specified by:
isTraceEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the TRACE level, false otherwise.
-
trace
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the TRACE level. -
trace
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Object)method except that the marker data is also taken into consideration. -
trace
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Object, Object)method except that the marker data is also taken into consideration. -
trace
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Object...)method except that the marker data is also taken into consideration. -
trace
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Throwable)method except that the marker data is also taken into consideration. -
isDebugEnabled
public boolean isDebugEnabled()Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the DEBUG level?- Specified by:
isDebugEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the DEBUG level, false otherwise.
-
debug
Deprecated.Description copied from interface:LoggerLog a message at the DEBUG level. -
debug
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost. -
debug
Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the DEBUG level with an accompanying message. -
isDebugEnabled
Deprecated.Description copied from interface:LoggerSimilar toLogger.isDebugEnabled()method except that the marker data is also taken into account.- Specified by:
isDebugEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the DEBUG level, false otherwise.
-
debug
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the DEBUG level. -
debug
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object)method except that the marker data is also taken into consideration. -
debug
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object, Object)method except that the marker data is also taken into consideration. -
debug
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object...)method except that the marker data is also taken into consideration. -
debug
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Throwable)method except that the marker data is also taken into consideration. -
isInfoEnabled
public boolean isInfoEnabled()Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the INFO level?- Specified by:
isInfoEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the INFO level, false otherwise.
-
info
Deprecated.Description copied from interface:LoggerLog a message at the INFO level. -
info
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost. -
info
Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the INFO level with an accompanying message. -
isInfoEnabled
Deprecated.Description copied from interface:LoggerSimilar toLogger.isInfoEnabled()method except that the marker data is also taken into consideration.- Specified by:
isInfoEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- true if this logger is warn enabled, false otherwise
-
info
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the INFO level. -
info
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Object)method except that the marker data is also taken into consideration. -
info
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Object, Object)method except that the marker data is also taken into consideration. -
info
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Object...)method except that the marker data is also taken into consideration. -
info
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Throwable)method except that the marker data is also taken into consideration. -
isWarnEnabled
public boolean isWarnEnabled()Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the WARN level?- Specified by:
isWarnEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the WARN level, false otherwise.
-
warn
Deprecated.Description copied from interface:LoggerLog a message at the WARN level. -
warn
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost. -
warn
Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the WARN level with an accompanying message. -
isWarnEnabled
Deprecated.Description copied from interface:LoggerSimilar toLogger.isWarnEnabled()method except that the marker data is also taken into consideration.- Specified by:
isWarnEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the WARN level, false otherwise.
-
warn
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the WARN level. -
warn
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Object)method except that the marker data is also taken into consideration. -
warn
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Object, Object)method except that the marker data is also taken into consideration. -
warn
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Object...)method except that the marker data is also taken into consideration. -
warn
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Throwable)method except that the marker data is also taken into consideration. -
isErrorEnabled
public boolean isErrorEnabled()Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the ERROR level?- Specified by:
isErrorEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the ERROR level, false otherwise.
-
error
Deprecated.Description copied from interface:LoggerLog a message at the ERROR level. -
error
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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
Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost. -
error
Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the ERROR level with an accompanying message. -
isErrorEnabled
Deprecated.Description copied from interface:LoggerSimilar toLogger.isErrorEnabled()method except that the marker data is also taken into consideration.- Specified by:
isErrorEnabledin interfaceLogger- Parameters:
marker- The marker data to take into consideration- Returns:
- True if this Logger is enabled for the ERROR level, false otherwise.
-
error
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the ERROR level. -
error
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Object)method except that the marker data is also taken into consideration. -
error
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Object, Object)method except that the marker data is also taken into consideration. -
error
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Object...)method except that the marker data is also taken into consideration. -
error
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Throwable)method except that the marker data is also taken into consideration.
-