public class SubstituteLogger extends Object implements Logger
NOPLogger
. However, a different delegate can be set at any time.
See also the relevant
error code documentation.ROOT_LOGGER_NAME
Constructor and Description |
---|
SubstituteLogger(String name,
Queue<SubstituteLoggingEvent> eventQueue,
boolean createdPostInitialization) |
Modifier and Type | Method and Description |
---|---|
void |
debug(Marker marker,
String msg)
Log a message with the specific Marker at the DEBUG level.
|
void |
debug(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.debug(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
debug(Marker marker,
String format,
Object arg)
This method is similar to
Logger.debug(String, Object) method except that the
marker data is also taken into consideration. |
void |
debug(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.debug(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
debug(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.debug(String, Throwable) method except that the
marker data is also taken into consideration. |
void |
debug(String msg)
Log a message at the DEBUG level.
|
void |
debug(String format,
Object... arguments)
Log a message at the DEBUG level according to the specified format
and arguments.
|
void |
debug(String format,
Object arg)
Log a message at the DEBUG level according to the specified format
and argument.
|
void |
debug(String format,
Object arg1,
Object arg2)
Log a message at the DEBUG level according to the specified format
and arguments.
|
void |
debug(String msg,
Throwable t)
Log an exception (throwable) at the DEBUG level with an
accompanying message.
|
boolean |
equals(Object o) |
void |
error(Marker marker,
String msg)
Log a message with the specific Marker at the ERROR level.
|
void |
error(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.error(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
error(Marker marker,
String format,
Object arg)
This method is similar to
Logger.error(String, Object) method except that the
marker data is also taken into consideration. |
void |
error(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.error(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
error(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration. |
void |
error(String msg)
Log a message at the ERROR level.
|
void |
error(String format,
Object... arguments)
Log a message at the ERROR level according to the specified format
and arguments.
|
void |
error(String format,
Object arg)
Log a message at the ERROR level according to the specified format
and argument.
|
void |
error(String format,
Object arg1,
Object arg2)
Log a message at the ERROR level according to the specified format
and arguments.
|
void |
error(String msg,
Throwable t)
Log an exception (throwable) at the ERROR level with an
accompanying message.
|
String |
getName()
Return the name of this
Logger instance. |
int |
hashCode() |
void |
info(Marker marker,
String msg)
Log a message with the specific Marker at the INFO level.
|
void |
info(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.info(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
info(Marker marker,
String format,
Object arg)
This method is similar to
Logger.info(String, Object) method except that the
marker data is also taken into consideration. |
void |
info(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.info(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
info(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.info(String, Throwable) method
except that the marker data is also taken into consideration. |
void |
info(String msg)
Log a message at the INFO level.
|
void |
info(String format,
Object... arguments)
Log a message at the INFO level according to the specified format
and arguments.
|
void |
info(String format,
Object arg)
Log a message at the INFO level according to the specified format
and argument.
|
void |
info(String format,
Object arg1,
Object arg2)
Log a message at the INFO level according to the specified format
and arguments.
|
void |
info(String msg,
Throwable t)
Log an exception (throwable) at the INFO level with an
accompanying message.
|
boolean |
isDebugEnabled()
Is the logger instance enabled for the DEBUG level?
|
boolean |
isDebugEnabled(Marker marker)
Similar to
Logger.isDebugEnabled() method except that the
marker data is also taken into account. |
boolean |
isDelegateEventAware() |
boolean |
isDelegateNOP() |
boolean |
isDelegateNull() |
boolean |
isErrorEnabled()
Is the logger instance enabled for the ERROR level?
|
boolean |
isErrorEnabled(Marker marker)
Similar to
Logger.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 to
Logger.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 to
Logger.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 to
Logger.isWarnEnabled() method except that the marker
data is also taken into consideration. |
void |
log(LoggingEvent event) |
void |
setDelegate(Logger delegate)
Typically called after the
LoggerFactory initialization phase is completed. |
void |
trace(Marker marker,
String msg)
Log a message with the specific Marker at the TRACE level.
|
void |
trace(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.trace(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
trace(Marker marker,
String format,
Object arg)
This method is similar to
Logger.trace(String, Object) method except that the
marker data is also taken into consideration. |
void |
trace(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.trace(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
trace(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.trace(String, Throwable) method except that the
marker data is also taken into consideration. |
void |
trace(String msg)
Log a message at the TRACE level.
|
void |
trace(String format,
Object... arguments)
Log a message at the TRACE level according to the specified format
and arguments.
|
void |
trace(String format,
Object arg)
Log a message at the TRACE level according to the specified format
and argument.
|
void |
trace(String format,
Object arg1,
Object arg2)
Log a message at the TRACE level according to the specified format
and arguments.
|
void |
trace(String msg,
Throwable t)
Log an exception (throwable) at the TRACE level with an
accompanying message.
|
void |
warn(Marker marker,
String msg)
Log a message with the specific Marker at the WARN level.
|
void |
warn(Marker marker,
String format,
Object... arguments)
This method is similar to
Logger.warn(String, Object...)
method except that the marker data is also taken into
consideration. |
void |
warn(Marker marker,
String format,
Object arg)
This method is similar to
Logger.warn(String, Object) method except that the
marker data is also taken into consideration. |
void |
warn(Marker marker,
String format,
Object arg1,
Object arg2)
This method is similar to
Logger.warn(String, Object, Object)
method except that the marker data is also taken into
consideration. |
void |
warn(Marker marker,
String msg,
Throwable t)
This method is similar to
Logger.warn(String, Throwable) method
except that the marker data is also taken into consideration. |
void |
warn(String msg)
Log a message at the WARN level.
|
void |
warn(String format,
Object... arguments)
Log a message at the WARN level according to the specified format
and arguments.
|
void |
warn(String format,
Object arg)
Log a message at the WARN level according to the specified format
and argument.
|
void |
warn(String format,
Object arg1,
Object arg2)
Log a message at the WARN level according to the specified format
and arguments.
|
void |
warn(String msg,
Throwable t)
Log an exception (throwable) at the WARN level with an
accompanying message.
|
public SubstituteLogger(String name, Queue<SubstituteLoggingEvent> eventQueue, boolean createdPostInitialization)
public String getName()
Logger
Logger
instance.public boolean isTraceEnabled()
Logger
isTraceEnabled
in interface Logger
public void trace(String msg)
Logger
public void trace(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the TRACE level.
public void trace(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the TRACE level.
public void trace(String format, Object... arguments)
Logger
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 taking one
and
two
arguments exist solely in order to avoid this hidden cost.
public void trace(String msg, Throwable t)
Logger
public boolean isTraceEnabled(Marker marker)
Logger
Logger.isTraceEnabled()
method except that the
marker data is also taken into account.isTraceEnabled
in interface Logger
marker
- The marker data to take into considerationpublic void trace(Marker marker, String msg)
Logger
public void trace(Marker marker, String format, Object arg)
Logger
Logger.trace(String, Object)
method except that the
marker data is also taken into consideration.public void trace(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.trace(String, Object, Object)
method except that the marker data is also taken into
consideration.public void trace(Marker marker, String format, Object... arguments)
Logger
Logger.trace(String, Object...)
method except that the marker data is also taken into
consideration.public void trace(Marker marker, String msg, Throwable t)
Logger
Logger.trace(String, Throwable)
method except that the
marker data is also taken into consideration.public boolean isDebugEnabled()
Logger
isDebugEnabled
in interface Logger
public void debug(String msg)
Logger
public void debug(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the DEBUG level.
public void debug(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the DEBUG level.
public void debug(String format, Object... arguments)
Logger
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 taking
one
and two
arguments exist solely in order to avoid this hidden cost.
public void debug(String msg, Throwable t)
Logger
public boolean isDebugEnabled(Marker marker)
Logger
Logger.isDebugEnabled()
method except that the
marker data is also taken into account.isDebugEnabled
in interface Logger
marker
- The marker data to take into considerationpublic void debug(Marker marker, String msg)
Logger
public void debug(Marker marker, String format, Object arg)
Logger
Logger.debug(String, Object)
method except that the
marker data is also taken into consideration.public void debug(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.debug(String, Object, Object)
method except that the marker data is also taken into
consideration.public void debug(Marker marker, String format, Object... arguments)
Logger
Logger.debug(String, Object...)
method except that the marker data is also taken into
consideration.public void debug(Marker marker, String msg, Throwable t)
Logger
Logger.debug(String, Throwable)
method except that the
marker data is also taken into consideration.public boolean isInfoEnabled()
Logger
isInfoEnabled
in interface Logger
public void info(String msg)
Logger
public void info(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the INFO level.
public void info(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the INFO level.
public void info(String format, Object... arguments)
Logger
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 taking
one
and two
arguments exist solely in order to avoid this hidden cost.
public void info(String msg, Throwable t)
Logger
public boolean isInfoEnabled(Marker marker)
Logger
Logger.isInfoEnabled()
method except that the marker
data is also taken into consideration.isInfoEnabled
in interface Logger
marker
- The marker data to take into considerationpublic void info(Marker marker, String msg)
Logger
public void info(Marker marker, String format, Object arg)
Logger
Logger.info(String, Object)
method except that the
marker data is also taken into consideration.public void info(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.info(String, Object, Object)
method except that the marker data is also taken into
consideration.public void info(Marker marker, String format, Object... arguments)
Logger
Logger.info(String, Object...)
method except that the marker data is also taken into
consideration.public void info(Marker marker, String msg, Throwable t)
Logger
Logger.info(String, Throwable)
method
except that the marker data is also taken into consideration.public boolean isWarnEnabled()
Logger
isWarnEnabled
in interface Logger
public void warn(String msg)
Logger
public void warn(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the WARN level.
public void warn(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the WARN level.
public void warn(String format, Object... arguments)
Logger
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 taking
one
and two
arguments exist solely in order to avoid this hidden cost.
public void warn(String msg, Throwable t)
Logger
public boolean isWarnEnabled(Marker marker)
Logger
Logger.isWarnEnabled()
method except that the marker
data is also taken into consideration.isWarnEnabled
in interface Logger
marker
- The marker data to take into considerationpublic void warn(Marker marker, String msg)
Logger
public void warn(Marker marker, String format, Object arg)
Logger
Logger.warn(String, Object)
method except that the
marker data is also taken into consideration.public void warn(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.warn(String, Object, Object)
method except that the marker data is also taken into
consideration.public void warn(Marker marker, String format, Object... arguments)
Logger
Logger.warn(String, Object...)
method except that the marker data is also taken into
consideration.public void warn(Marker marker, String msg, Throwable t)
Logger
Logger.warn(String, Throwable)
method
except that the marker data is also taken into consideration.public boolean isErrorEnabled()
Logger
isErrorEnabled
in interface Logger
public void error(String msg)
Logger
public void error(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the ERROR level.
public void error(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the ERROR level.
public void error(String format, Object... arguments)
Logger
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 taking
one
and two
arguments exist solely in order to avoid this hidden cost.
public void error(String msg, Throwable t)
Logger
public boolean isErrorEnabled(Marker marker)
Logger
Logger.isErrorEnabled()
method except that the
marker data is also taken into consideration.isErrorEnabled
in interface Logger
marker
- The marker data to take into considerationpublic void error(Marker marker, String msg)
Logger
public void error(Marker marker, String format, Object arg)
Logger
Logger.error(String, Object)
method except that the
marker data is also taken into consideration.public void error(Marker marker, String format, Object arg1, Object arg2)
Logger
Logger.error(String, Object, Object)
method except that the marker data is also taken into
consideration.public void error(Marker marker, String format, Object... arguments)
Logger
Logger.error(String, Object...)
method except that the marker data is also taken into
consideration.public void error(Marker marker, String msg, Throwable t)
Logger
Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration.public void setDelegate(Logger delegate)
LoggerFactory
initialization phase is completed.delegate
- public boolean isDelegateEventAware()
public void log(LoggingEvent event)
public boolean isDelegateNull()
public boolean isDelegateNOP()
Copyright © 2017 JBoss by Red Hat. All rights reserved.