Uses of Class
org.apache.log4j.Priority
-
Packages that use Priority Package Description org.apache.log4j An rather minimal but sufficient implementation redirecting all calls to a log4j logger to a logback logger. -
-
Uses of Priority in org.apache.log4j
Subclasses of Priority in org.apache.log4j Modifier and Type Class Description class
Level
Defines the minimum set of levels recognized by the system, that isOFF
,FATAL
,ERROR
,WARN
,INFO
,DEBUG
andALL
.Fields in org.apache.log4j declared as Priority Modifier and Type Field Description static Priority
Priority. DEBUG
Deprecated.UseLevel.DEBUG
instead.static Priority
Priority. ERROR
Deprecated.UseLevel.ERROR
instead.static Priority
Priority. FATAL
Deprecated.UseLevel.FATAL
instead.static Priority
Priority. INFO
Deprecated.UseLevel.INFO
instead.static Priority
Priority. WARN
Deprecated.UseLevel.WARN
instead.Methods in org.apache.log4j that return Priority Modifier and Type Method Description static Priority[]
Priority. getAllPossiblePriorities()
Deprecated.This method will be removed with no replacement.static Priority
Priority. toPriority(int val)
Deprecated.Please use theLevel.toLevel(int)
method instead.static Priority
Priority. toPriority(int val, Priority defaultPriority)
Deprecated.Please use theLevel.toLevel(int, Level)
method instead.static Priority
Priority. toPriority(java.lang.String sArg)
Deprecated.Please use theLevel.toLevel(String)
method instead.static Priority
Priority. toPriority(java.lang.String sArg, Priority defaultPriority)
Deprecated.Please use theLevel.toLevel(String, Level)
method instead.Methods in org.apache.log4j with parameters of type Priority Modifier and Type Method Description protected void
Category. forcedLog(java.lang.String FQCN, Priority p, java.lang.Object msg, java.lang.Throwable t)
boolean
Category. isEnabledFor(Priority p)
Determines whether the priority passed as parameter is enabled in the underlying SLF4J logger.boolean
Priority. isGreaterOrEqual(Priority r)
Returnstrue
if this level has a higher or equal level than the level passed as argument,false
otherwise.void
Category. log(java.lang.String FQCN, Priority p, java.lang.Object msg, java.lang.Throwable t)
void
Category. log(Priority p, java.lang.Object message)
void
Category. log(Priority p, java.lang.Object message, java.lang.Throwable t)
private int
Category. priorityToLevelInt(Priority p)
void
AppenderSkeleton. setThreshold(Priority threshold)
static Priority
Priority. toPriority(int val, Priority defaultPriority)
Deprecated.Please use theLevel.toLevel(int, Level)
method instead.static Priority
Priority. toPriority(java.lang.String sArg, Priority defaultPriority)
Deprecated.Please use theLevel.toLevel(String, Level)
method instead.
-