|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.slf4j.helpers.SubstituteLogger
public class SubstituteLogger
A logger implementation which logs via a delegate logger. By default, the delegate is a
NOPLogger
. However, a different delegate can be set at anytime.
Field Summary |
---|
Fields inherited from interface org.slf4j.Logger |
---|
ROOT_LOGGER_NAME |
Constructor Summary | |
---|---|
SubstituteLogger(String name)
|
Method Summary | |
---|---|
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...) |
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...) |
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...) |
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 |
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 |
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...) |
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...) |
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. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SubstituteLogger(String name)
Method Detail |
---|
public String getName()
Logger
Logger
instance.
getName
in interface Logger
public boolean isTraceEnabled()
Logger
isTraceEnabled
in interface Logger
public void trace(String msg)
Logger
trace
in interface Logger
msg
- the message string to be loggedpublic void trace(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the TRACE level.
trace
in interface Logger
format
- the format stringarg
- the argumentpublic void trace(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the TRACE level.
trace
in interface Logger
format
- the format stringarg1
- the first argumentarg2
- the second argumentpublic 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.
trace
in interface Logger
format
- the format stringarguments
- a list of 3 or more argumentspublic void trace(String msg, Throwable t)
Logger
trace
in interface Logger
msg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic 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 consideration
public void trace(Marker marker, String msg)
Logger
trace
in interface Logger
marker
- the marker data specific to this log statementmsg
- the message string to be loggedpublic void trace(Marker marker, String format, Object arg)
Logger
Logger.trace(String, Object)
method except that the
marker data is also taken into consideration.
trace
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic 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.
trace
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void trace(Marker marker, String format, Object... arguments)
Logger
Logger.trace(String, Object...)
method except that the marker data is also taken into
consideration.
trace
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarguments
- an array of argumentspublic void trace(Marker marker, String msg, Throwable t)
Logger
Logger.trace(String, Throwable)
method except that the
marker data is also taken into consideration.
trace
in interface Logger
marker
- the marker data specific to this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isDebugEnabled()
Logger
isDebugEnabled
in interface Logger
public void debug(String msg)
Logger
debug
in interface Logger
msg
- the message string to be loggedpublic void debug(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the DEBUG level.
debug
in interface Logger
format
- the format stringarg
- the argumentpublic void debug(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the DEBUG level.
debug
in interface Logger
format
- the format stringarg1
- the first argumentarg2
- the second argumentpublic 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.
debug
in interface Logger
format
- the format stringarguments
- a list of 3 or more argumentspublic void debug(String msg, Throwable t)
Logger
debug
in interface Logger
msg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic 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 consideration
public void debug(Marker marker, String msg)
Logger
debug
in interface Logger
marker
- the marker data specific to this log statementmsg
- the message string to be loggedpublic void debug(Marker marker, String format, Object arg)
Logger
Logger.debug(String, Object)
method except that the
marker data is also taken into consideration.
debug
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic 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.
debug
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void debug(Marker marker, String format, Object... arguments)
Logger
Logger.debug(String, Object...)
method except that the marker data is also taken into
consideration.
debug
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarguments
- a list of 3 or more argumentspublic void debug(Marker marker, String msg, Throwable t)
Logger
Logger.debug(String, Throwable)
method except that the
marker data is also taken into consideration.
debug
in interface Logger
marker
- the marker data specific to this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isInfoEnabled()
Logger
isInfoEnabled
in interface Logger
public void info(String msg)
Logger
info
in interface Logger
msg
- the message string to be loggedpublic void info(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the INFO level.
info
in interface Logger
format
- the format stringarg
- the argumentpublic void info(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the INFO level.
info
in interface Logger
format
- the format stringarg1
- the first argumentarg2
- the second argumentpublic 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.
info
in interface Logger
format
- the format stringarguments
- a list of 3 or more argumentspublic void info(String msg, Throwable t)
Logger
info
in interface Logger
msg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic 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 consideration
public void info(Marker marker, String msg)
Logger
info
in interface Logger
marker
- The marker specific to this log statementmsg
- the message string to be loggedpublic void info(Marker marker, String format, Object arg)
Logger
Logger.info(String, Object)
method except that the
marker data is also taken into consideration.
info
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic 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.
info
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void info(Marker marker, String format, Object... arguments)
Logger
Logger.info(String, Object...)
method except that the marker data is also taken into
consideration.
info
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarguments
- a list of 3 or more argumentspublic void info(Marker marker, String msg, Throwable t)
Logger
Logger.info(String, Throwable)
method
except that the marker data is also taken into consideration.
info
in interface Logger
marker
- the marker data for this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isWarnEnabled()
Logger
isWarnEnabled
in interface Logger
public void warn(String msg)
Logger
warn
in interface Logger
msg
- the message string to be loggedpublic void warn(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the WARN level.
warn
in interface Logger
format
- the format stringarg
- the argumentpublic void warn(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the WARN level.
warn
in interface Logger
format
- the format stringarg1
- the first argumentarg2
- the second argumentpublic 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.
warn
in interface Logger
format
- the format stringarguments
- a list of 3 or more argumentspublic void warn(String msg, Throwable t)
Logger
warn
in interface Logger
msg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic 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 consideration
public void warn(Marker marker, String msg)
Logger
warn
in interface Logger
marker
- The marker specific to this log statementmsg
- the message string to be loggedpublic void warn(Marker marker, String format, Object arg)
Logger
Logger.warn(String, Object)
method except that the
marker data is also taken into consideration.
warn
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic 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.
warn
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void warn(Marker marker, String format, Object... arguments)
Logger
Logger.warn(String, Object...)
method except that the marker data is also taken into
consideration.
warn
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarguments
- a list of 3 or more argumentspublic void warn(Marker marker, String msg, Throwable t)
Logger
Logger.warn(String, Throwable)
method
except that the marker data is also taken into consideration.
warn
in interface Logger
marker
- the marker data for this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isErrorEnabled()
Logger
isErrorEnabled
in interface Logger
public void error(String msg)
Logger
error
in interface Logger
msg
- the message string to be loggedpublic void error(String format, Object arg)
Logger
This form avoids superfluous object creation when the logger is disabled for the ERROR level.
error
in interface Logger
format
- the format stringarg
- the argumentpublic void error(String format, Object arg1, Object arg2)
Logger
This form avoids superfluous object creation when the logger is disabled for the ERROR level.
error
in interface Logger
format
- the format stringarg1
- the first argumentarg2
- the second argumentpublic 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.
error
in interface Logger
format
- the format stringarguments
- a list of 3 or more argumentspublic void error(String msg, Throwable t)
Logger
error
in interface Logger
msg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic 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 consideration
public void error(Marker marker, String msg)
Logger
error
in interface Logger
marker
- The marker specific to this log statementmsg
- the message string to be loggedpublic void error(Marker marker, String format, Object arg)
Logger
Logger.error(String, Object)
method except that the
marker data is also taken into consideration.
error
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic 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.
error
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void error(Marker marker, String format, Object... arguments)
Logger
Logger.error(String, Object...)
method except that the marker data is also taken into
consideration.
error
in interface Logger
marker
- the marker data specific to this log statementformat
- the format stringarguments
- a list of 3 or more argumentspublic void error(Marker marker, String msg, Throwable t)
Logger
Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration.
error
in interface Logger
marker
- the marker data specific to this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public void setDelegate(Logger delegate)
LoggerFactory
initialization phase is completed.
delegate
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |