Class EventRecodingLogger
- java.lang.Object
-
- org.slf4j.event.EventRecodingLogger
-
- All Implemented Interfaces:
Logger
public class EventRecodingLogger extends java.lang.Object implements Logger
This class is used to record events during the initialization phase of the underlying logging framework. It is called bySubstituteLogger
.
-
-
Field Summary
-
Fields inherited from interface org.slf4j.Logger
ROOT_LOGGER_NAME
-
-
Constructor Summary
Constructors Constructor Description EventRecodingLogger(SubstituteLogger logger, java.util.Queue<SubstituteLoggingEvent> eventQueue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
debug(java.lang.String msg)
Log a message at the DEBUG level.void
debug(java.lang.String format, java.lang.Object arg)
Log a message at the DEBUG level according to the specified format and argument.void
debug(java.lang.String format, java.lang.Object... arguments)
Log a message at the DEBUG level according to the specified format and arguments.void
debug(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Log a message at the DEBUG level according to the specified format and arguments.void
debug(java.lang.String msg, java.lang.Throwable t)
Log an exception (throwable) at the DEBUG level with an accompanying message.void
debug(Marker marker, java.lang.String msg)
Log a message with the specific Marker at the DEBUG level.void
debug(Marker marker, java.lang.String format, java.lang.Object arg)
This method is similar toLogger.debug(String, Object)
method except that the marker data is also taken into consideration.void
debug(Marker marker, java.lang.String format, java.lang.Object... arguments)
This method is similar toLogger.debug(String, Object...)
method except that the marker data is also taken into consideration.void
debug(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
This method is similar toLogger.debug(String, Object, Object)
method except that the marker data is also taken into consideration.void
debug(Marker marker, java.lang.String msg, java.lang.Throwable t)
This method is similar toLogger.debug(String, Throwable)
method except that the marker data is also taken into consideration.void
error(java.lang.String msg)
Log a message at the ERROR level.void
error(java.lang.String format, java.lang.Object arg)
Log a message at the ERROR level according to the specified format and argument.void
error(java.lang.String format, java.lang.Object... arguments)
Log a message at the ERROR level according to the specified format and arguments.void
error(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Log a message at the ERROR level according to the specified format and arguments.void
error(java.lang.String msg, java.lang.Throwable t)
Log an exception (throwable) at the ERROR level with an accompanying message.void
error(Marker marker, java.lang.String msg)
Log a message with the specific Marker at the ERROR level.void
error(Marker marker, java.lang.String format, java.lang.Object arg)
This method is similar toLogger.error(String, Object)
method except that the marker data is also taken into consideration.void
error(Marker marker, java.lang.String format, java.lang.Object... arguments)
This method is similar toLogger.error(String, Object...)
method except that the marker data is also taken into consideration.void
error(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
This method is similar toLogger.error(String, Object, Object)
method except that the marker data is also taken into consideration.void
error(Marker marker, java.lang.String msg, java.lang.Throwable t)
This method is similar toLogger.error(String, Throwable)
method except that the marker data is also taken into consideration.java.lang.String
getName()
Return the name of thisLogger
instance.void
info(java.lang.String msg)
Log a message at the INFO level.void
info(java.lang.String format, java.lang.Object arg)
Log a message at the INFO level according to the specified format and argument.void
info(java.lang.String format, java.lang.Object... arguments)
Log a message at the INFO level according to the specified format and arguments.void
info(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Log a message at the INFO level according to the specified format and arguments.void
info(java.lang.String msg, java.lang.Throwable t)
Log an exception (throwable) at the INFO level with an accompanying message.void
info(Marker marker, java.lang.String msg)
Log a message with the specific Marker at the INFO level.void
info(Marker marker, java.lang.String format, java.lang.Object arg)
This method is similar toLogger.info(String, Object)
method except that the marker data is also taken into consideration.void
info(Marker marker, java.lang.String format, java.lang.Object... arguments)
This method is similar toLogger.info(String, Object...)
method except that the marker data is also taken into consideration.void
info(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
This method is similar toLogger.info(String, Object, Object)
method except that the marker data is also taken into consideration.void
info(Marker marker, java.lang.String msg, java.lang.Throwable t)
This method is similar toLogger.info(String, Throwable)
method except that the marker data is also taken into consideration.boolean
isDebugEnabled()
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
isErrorEnabled()
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
isInfoEnabled()
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
isTraceEnabled()
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
isWarnEnabled()
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
trace(java.lang.String msg)
Log a message at the TRACE level.void
trace(java.lang.String format, java.lang.Object arg)
Log a message at the TRACE level according to the specified format and argument.void
trace(java.lang.String format, java.lang.Object... arguments)
Log a message at the TRACE level according to the specified format and arguments.void
trace(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Log a message at the TRACE level according to the specified format and arguments.void
trace(java.lang.String msg, java.lang.Throwable t)
Log an exception (throwable) at the TRACE level with an accompanying message.void
trace(Marker marker, java.lang.String msg)
Log a message with the specific Marker at the TRACE level.void
trace(Marker marker, java.lang.String format, java.lang.Object arg)
This method is similar toLogger.trace(String, Object)
method except that the marker data is also taken into consideration.void
trace(Marker marker, java.lang.String format, java.lang.Object... argArray)
This method is similar toLogger.trace(String, Object...)
method except that the marker data is also taken into consideration.void
trace(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
This method is similar toLogger.trace(String, Object, Object)
method except that the marker data is also taken into consideration.void
trace(Marker marker, java.lang.String msg, java.lang.Throwable t)
This method is similar toLogger.trace(String, Throwable)
method except that the marker data is also taken into consideration.void
warn(java.lang.String msg)
Log a message at the WARN level.void
warn(java.lang.String format, java.lang.Object arg)
Log a message at the WARN level according to the specified format and argument.void
warn(java.lang.String format, java.lang.Object... arguments)
Log a message at the WARN level according to the specified format and arguments.void
warn(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Log a message at the WARN level according to the specified format and arguments.void
warn(java.lang.String msg, java.lang.Throwable t)
Log an exception (throwable) at the WARN level with an accompanying message.void
warn(Marker marker, java.lang.String msg)
Log a message with the specific Marker at the WARN level.void
warn(Marker marker, java.lang.String format, java.lang.Object arg)
This method is similar toLogger.warn(String, Object)
method except that the marker data is also taken into consideration.void
warn(Marker marker, java.lang.String format, java.lang.Object... arguments)
This method is similar toLogger.warn(String, Object...)
method except that the marker data is also taken into consideration.void
warn(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
This method is similar toLogger.warn(String, Object, Object)
method except that the marker data is also taken into consideration.void
warn(Marker marker, java.lang.String msg, java.lang.Throwable t)
This method is similar toLogger.warn(String, Throwable)
method except that the marker data is also taken into consideration.
-
-
-
Constructor Detail
-
EventRecodingLogger
public EventRecodingLogger(SubstituteLogger logger, java.util.Queue<SubstituteLoggingEvent> eventQueue)
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:Logger
Return the name of thisLogger
instance.
-
isTraceEnabled
public boolean 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
public void trace(java.lang.String msg)
Description copied from interface:Logger
Log a message at the TRACE level.
-
trace
public void trace(java.lang.String format, java.lang.Object arg)
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
public void trace(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void trace(java.lang.String format, java.lang.Object... arguments)
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
public void trace(java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
Log an exception (throwable) at the TRACE level with an accompanying message.
-
isTraceEnabled
public boolean isTraceEnabled(Marker marker)
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
public void trace(Marker marker, java.lang.String msg)
Description copied from interface:Logger
Log a message with the specific Marker at the TRACE level.
-
trace
public void trace(Marker marker, java.lang.String format, java.lang.Object arg)
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
public void trace(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void trace(Marker marker, java.lang.String format, java.lang.Object... argArray)
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
public void trace(Marker marker, java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
This method is similar toLogger.trace(String, Throwable)
method except that the marker data is also taken into consideration.
-
isDebugEnabled
public boolean 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
public void debug(java.lang.String msg)
Description copied from interface:Logger
Log a message at the DEBUG level.
-
debug
public void debug(java.lang.String format, java.lang.Object arg)
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
public void debug(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void debug(java.lang.String format, java.lang.Object... arguments)
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
public void debug(java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
Log an exception (throwable) at the DEBUG level with an accompanying message.
-
isDebugEnabled
public boolean isDebugEnabled(Marker marker)
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
public void debug(Marker marker, java.lang.String msg)
Description copied from interface:Logger
Log a message with the specific Marker at the DEBUG level.
-
debug
public void debug(Marker marker, java.lang.String format, java.lang.Object arg)
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
public void debug(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void debug(Marker marker, java.lang.String format, java.lang.Object... arguments)
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
public void debug(Marker marker, java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
This method is similar toLogger.debug(String, Throwable)
method except that the marker data is also taken into consideration.
-
isInfoEnabled
public boolean 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
public void info(java.lang.String msg)
Description copied from interface:Logger
Log a message at the INFO level.
-
info
public void info(java.lang.String format, java.lang.Object arg)
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
public void info(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void info(java.lang.String format, java.lang.Object... arguments)
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
public void info(java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
Log an exception (throwable) at the INFO level with an accompanying message.
-
isInfoEnabled
public boolean isInfoEnabled(Marker marker)
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 warn enabled, false otherwise
-
info
public void info(Marker marker, java.lang.String msg)
Description copied from interface:Logger
Log a message with the specific Marker at the INFO level.
-
info
public void info(Marker marker, java.lang.String format, java.lang.Object arg)
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
public void info(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void info(Marker marker, java.lang.String format, java.lang.Object... arguments)
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
public void info(Marker marker, java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
This method is similar toLogger.info(String, Throwable)
method except that the marker data is also taken into consideration.
-
isWarnEnabled
public boolean 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
public void warn(java.lang.String msg)
Description copied from interface:Logger
Log a message at the WARN level.
-
warn
public void warn(java.lang.String format, java.lang.Object arg)
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
public void warn(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void warn(java.lang.String format, java.lang.Object... arguments)
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
public void warn(java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
Log an exception (throwable) at the WARN level with an accompanying message.
-
isWarnEnabled
public boolean isWarnEnabled(Marker marker)
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
public void warn(Marker marker, java.lang.String msg)
Description copied from interface:Logger
Log a message with the specific Marker at the WARN level.
-
warn
public void warn(Marker marker, java.lang.String format, java.lang.Object arg)
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
public void warn(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void warn(Marker marker, java.lang.String format, java.lang.Object... arguments)
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
public void warn(Marker marker, java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
This method is similar toLogger.warn(String, Throwable)
method except that the marker data is also taken into consideration.
-
isErrorEnabled
public boolean 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
public void error(java.lang.String msg)
Description copied from interface:Logger
Log a message at the ERROR level.
-
error
public void error(java.lang.String format, java.lang.Object arg)
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
public void error(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void error(java.lang.String format, java.lang.Object... arguments)
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
public void error(java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
Log an exception (throwable) at the ERROR level with an accompanying message.
-
isErrorEnabled
public boolean isErrorEnabled(Marker marker)
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
public void error(Marker marker, java.lang.String msg)
Description copied from interface:Logger
Log a message with the specific Marker at the ERROR level.
-
error
public void error(Marker marker, java.lang.String format, java.lang.Object arg)
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
public void error(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
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
public void error(Marker marker, java.lang.String format, java.lang.Object... arguments)
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
public void error(Marker marker, java.lang.String msg, java.lang.Throwable t)
Description copied from interface:Logger
This method is similar toLogger.error(String, Throwable)
method except that the marker data is also taken into consideration.
-
-