|
SLF4J 1.0-rc6 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Extension of the Logger
interface adding Marker
support.
Method Summary | |
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 to Logger.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 to Logger.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 to Logger.debug(String, Throwable) method except that the
marker data is also taken into consideration. |
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 to Logger.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 to Logger.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 to Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration. |
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 to Logger.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 to Logger.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 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 |
isWarnEnabled(Marker marker)
Similar to Logger.isWarnEnabled() method except that the marker
data is also taken into consideration. |
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 to Logger.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 to Logger.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 to Logger.warn(String, Throwable) method
except that the marker data is also taken into consideration. |
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, isWarnEnabled, warn, warn, warn, warn, warn |
Method Detail |
public boolean isDebugEnabled(Marker marker)
Logger.isDebugEnabled()
method except that the
marker data is also taken into account.
marker
- The marker data to take into considerationpublic void debug(Marker marker, java.lang.String msg)
marker
- the marker data specific to this log statementmsg
- the message string to be loggedpublic void debug(Marker marker, java.lang.String format, java.lang.Object arg)
Logger.debug(String, Object)
method except that the
marker data is also taken into consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic void debug(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Logger.debug(String, Object, Object)
method except that the marker data is also taken into
consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void debug(Marker marker, java.lang.String msg, java.lang.Throwable t)
Logger.debug(String, Throwable)
method except that the
marker data is also taken into consideration.
marker
- the marker data specific to this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isInfoEnabled(Marker marker)
Logger.isInfoEnabled()
method except that the marker
data is also taken into consideration.
marker
- The marker data to take into considerationpublic void info(Marker marker, java.lang.String msg)
marker
- The marker specific to this log statementmsg
- the message string to be loggedpublic void info(Marker marker, java.lang.String format, java.lang.Object arg)
Logger.info(String, Object)
method except that the
marker data is also taken into consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic void info(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Logger.info(String, Object, Object)
method except that the marker data is also taken into
consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void info(Marker marker, java.lang.String msg, java.lang.Throwable t)
Logger.info(String, Throwable)
method
except that the marker data is also taken into consideration.
marker
- the marker data for this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isWarnEnabled(Marker marker)
Logger.isWarnEnabled()
method except that the marker
data is also taken into consideration.
marker
- The marker data to take into considerationpublic void warn(Marker marker, java.lang.String msg)
marker
- The marker specific to this log statementmsg
- the message string to be loggedpublic void warn(Marker marker, java.lang.String format, java.lang.Object arg)
Logger.warn(String, Object)
method except that the
marker data is also taken into consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic void warn(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Logger.warn(String, Object, Object)
method except that the marker data is also taken into
consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void warn(Marker marker, java.lang.String msg, java.lang.Throwable t)
Logger.warn(String, Throwable)
method
except that the marker data is also taken into consideration.
marker
- the marker data for this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to logpublic boolean isErrorEnabled(Marker marker)
Logger.isErrorEnabled()
method except that the
marker data is also taken into consideration.
marker
- The marker data to take into considerationpublic void error(Marker marker, java.lang.String msg)
marker
- The marker specific to this log statementmsg
- the message string to be loggedpublic void error(Marker marker, java.lang.String format, java.lang.Object arg)
Logger.error(String, Object)
method except that the
marker data is also taken into consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg
- the argumentpublic void error(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Logger.error(String, Object, Object)
method except that the marker data is also taken into
consideration.
marker
- the marker data specific to this log statementformat
- the format stringarg1
- the first argumentarg2
- the second argumentpublic void error(Marker marker, java.lang.String msg, java.lang.Throwable t)
Logger.error(String, Throwable)
method except that the marker data is also taken into
consideration.
marker
- the marker data specific to this log statementmsg
- the message accompanying the exceptiont
- the exception (throwable) to log
|
Copyright 2004-2006 SLF4J.ORG, QOS.ch | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |