HierarchyEventListener
event to the repository.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.LogLog.DEBUG_KEY
instead.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.System.out
.Appender
specific way.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.ErrorHandler
for this appender.Level
, if any, for this Category.Category.getLevel()
instead.Hierarchy
.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 SLF4JLogger.isErrorEnabled()
method in SLF4Jtrue
if this level has a higher or equal
level than the level passed as argument, false
otherwise.Logger.isInfoEnabled()
method in SLF4JLogger.isTraceEnabled()
method of SLF4J.Logger.isWarnEnabled()
method in SLF4JOFF
, 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.LoggerRepository
is used to create and retrieve
Loggers
.org.apache.log4j.LogManager
class (as found in log4j 1.2)
delegating all calls to SLF4J.Configurator.INHERITED
.OFF
has the highest possible rank and is
intended to turn off logging.Level
class instead.ErrorHandler
for this appender.Layout
for this appender.LoggerRepository.setThreshold(Level)
accepting a string
parameter instead of a Level
.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
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.Copyright © 2005–2016 QOS.ch. All rights reserved.