|
Log4j Implemented Over SLF4J 1.6.1-redhat-2 | ||||||||
PREV NEXT | FRAMES NO FRAMES |
ALL
has the lowest possible rank and is intended to
turn on all logging.
org.apache.log4j.Category
class (as found in log4j 1.2) by
delegation of all calls to a Logger
instance.Logger.debug(String)
method of SLF4J.
Logger.debug(String,Throwable)
method in
SLF4J.
DEBUG
Level designates fine-grained
informational events that are most useful to debug an
application.
Level.DEBUG
instead.
Logger.error(String)
method in SLF4J.
Logger.error(String,Throwable)
method in
SLF4J.
ERROR
level designates error events that
might still allow the application to continue running.
Level.ERROR
instead.
Logger.error(String)
method in SLF4J.
Logger.error(String,Throwable)
method in
SLF4J.
FATAL
level designates very severe error
events that will presumably lead the application to abort.
Level.FATAL
instead.
Level
, if any, for this Category.
getLevel()
instead.
Logger.info(String)
method in SLF4J.
Logger.info(String,Throwable)
method in
SLF4J.
INFO
level designates informational messages
that highlight the progress of the application at coarse-grained
level.
Level.INFO
instead.
Logger.isDebugEnabled()
method in SLF4J
Logger.isErrorEnabled()
method in SLF4J
true
if this level has a higher or equal
level than the level passed as argument, false
otherwise.
Logger.isInfoEnabled()
method in SLF4J
Logger.isTraceEnabled()
method of SLF4J.
Logger.isWarnEnabled()
method in SLF4J
OFF
, FATAL
, ERROR
,
WARN
, INFO
, DEBUG
and
ALL
.org.apache.log4j.Logger
class (as found in log4j 1.2)
delegating all calls to a Logger
instance.org.apache.log4j.LogManager
class (as found in log4j 1.2)
delegating all calls to SLF4J.OFF
has the highest possible rank and is
intended to turn off logging.
Level
class instead.Level.toLevel(String)
method instead.
Level.toLevel(int)
method instead.
Level.toLevel(int, Level)
method instead.
Level.toLevel(String, Level)
method instead.
TRACE
Level designates finer-grained
informational events than the DEBUG
trace(Object) -
Method in class org.apache.log4j.Logger
Logger.trace(String)
method in SLF4J.
Logger.trace(String,Throwable)
method in SLF4J.
Logger.warn(String)
method in SLF4J.
Logger.warn(String,Throwable)
method in
SLF4J.
WARN
level designates potentially harmful situations.
Level.WARN
instead.
|
Log4j Implemented Over SLF4J 1.6.1-redhat-2 | ||||||||
PREV NEXT | FRAMES NO FRAMES |