|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.slf4j.helpers.MarkerIgnoringBase
public abstract class MarkerIgnoringBase
This class serves as base for adapters or native implementations of logging systems lacking Marker support. In this implementation, methods taking marker data simply invoke the corresponding method without the Marker argument, discarding any marker data passed as argument.
Field Summary | |
---|---|
protected String |
name
|
Fields inherited from interface org.slf4j.Logger |
---|
ROOT_LOGGER_NAME |
Constructor Summary | |
---|---|
MarkerIgnoringBase()
|
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 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[] argArray)
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 |
error(Marker marker,
String msg)
Log a message with the specific Marker at the ERROR level. |
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[] argArray)
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. |
String |
getName()
Return the name of this Logger instance. |
void |
info(Marker marker,
String msg)
Log a message with the specific Marker at the INFO level. |
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[] argArray)
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. |
boolean |
isDebugEnabled(Marker marker)
Similar to Logger.isDebugEnabled() method except that the
marker data is also taken into account. |
boolean |
isErrorEnabled(Marker marker)
Similar to Logger.isErrorEnabled() method except that the
marker data is also taken into consideration. |
boolean |
isInfoEnabled(Marker marker)
Similar to Logger.isInfoEnabled() method except that the marker
data is also taken into consideration. |
boolean |
isTraceEnabled(Marker marker)
Similar to Logger.isTraceEnabled() method except that the
marker data is also taken into account. |
boolean |
isWarnEnabled(Marker marker)
Similar to Logger.isWarnEnabled() method except that the marker
data is also taken into consideration. |
protected Object |
readResolve()
Replace this instance with a homonymous (same name) logger returned by LoggerFactory. |
String |
toString()
|
void |
trace(Marker marker,
String msg)
Log a message with the specific Marker at the TRACE level. |
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[] argArray)
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 |
warn(Marker marker,
String msg)
Log a message with the specific Marker at the WARN level. |
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[] argArray)
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.slf4j.Logger |
---|
debug, debug, debug, debug, debug, error, error, error, error, error, getName, info, info, info, info, info, isDebugEnabled, isErrorEnabled, isInfoEnabled, isTraceEnabled, isWarnEnabled, trace, trace, trace, trace, trace, warn, warn, warn, warn, warn |
Field Detail |
---|
protected String name
Constructor Detail |
---|
public MarkerIgnoringBase()
Method Detail |
---|
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
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[] argArray)
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 stringargArray
- 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(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
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[] argArray)
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 stringargArray
- an array of 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(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
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[] argArray)
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 stringargArray
- an array of 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(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
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[] argArray)
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 stringargArray
- an array of 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(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
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[] argArray)
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 stringargArray
- an array of 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 String toString()
toString
in class Object
public String getName()
Logger
Logger
instance.
getName
in interface Logger
protected Object readResolve() throws ObjectStreamException
This approach will work well if the desired ILoggerFactory is the one references by LoggerFactory. However, if the user manages its logger hierarchy through a different (non-static) mechanism, e.g. dependency injection, then this approach would be mostly counterproductive.
ObjectStreamException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |