Log4j Implemented Over SLF4J 1.6.1-redhat-2
A C D E F G I L M N O P R S T W

A

ALL - Static variable in class org.apache.log4j.Level
The ALL has the lowest possible rank and is intended to turn on all logging.
ALL_INT - Static variable in class org.apache.log4j.Priority
 

C

Category - Class in org.apache.log4j
This class is a minimal implementation of the original org.apache.log4j.Category class (as found in log4j 1.2) by delegation of all calls to a Logger instance.
clear() - Static method in class org.apache.log4j.MDC
 
clear() - Static method in class org.apache.log4j.NDC
 
cloneStack() - Static method in class org.apache.log4j.NDC
 
convertToString(Object) - Method in class org.apache.log4j.Category
 

D

debug(Object) - Method in class org.apache.log4j.Category
Delegates to Logger.debug(String) method of SLF4J.
debug(Object, Throwable) - Method in class org.apache.log4j.Category
Delegates to Logger.debug(String,Throwable) method in SLF4J.
DEBUG - Static variable in class org.apache.log4j.Level
The DEBUG Level designates fine-grained informational events that are most useful to debug an application.
DEBUG - Static variable in class org.apache.log4j.Priority
Deprecated. Use Level.DEBUG instead.
DEBUG_INT - Static variable in class org.apache.log4j.Priority
 

E

equals(Object) - Method in class org.apache.log4j.Priority
Two priorities are equal if their level fields are equal.
error(Object) - Method in class org.apache.log4j.Category
Delegates to Logger.error(String) method in SLF4J.
error(Object, Throwable) - Method in class org.apache.log4j.Category
Delegates to Logger.error(String,Throwable) method in SLF4J.
ERROR - Static variable in class org.apache.log4j.Level
The ERROR level designates error events that might still allow the application to continue running.
ERROR - Static variable in class org.apache.log4j.Priority
Deprecated. Use Level.ERROR instead.
ERROR_INT - Static variable in class org.apache.log4j.Priority
 

F

fatal(Object) - Method in class org.apache.log4j.Category
Delegates to Logger.error(String) method in SLF4J.
fatal(Object, Throwable) - Method in class org.apache.log4j.Category
Delegates to Logger.error(String,Throwable) method in SLF4J.
FATAL - Static variable in class org.apache.log4j.Level
The FATAL level designates very severe error events that will presumably lead the application to abort.
FATAL - Static variable in class org.apache.log4j.Priority
Deprecated. Use Level.FATAL instead.
FATAL_INT - Static variable in class org.apache.log4j.Priority
 

G

get(String) - Static method in class org.apache.log4j.MDC
 
get() - Static method in class org.apache.log4j.NDC
 
getAllPossiblePriorities() - Static method in class org.apache.log4j.Priority
Deprecated. This method will be removed with no replacement.
getCurrentLoggers() - Static method in class org.apache.log4j.LogManager
This bogus implementation returns an empty enumeration.
getDepth() - Static method in class org.apache.log4j.NDC
 
getEffectiveLevel() - Method in class org.apache.log4j.Category
Return the level in effect for this category/logger.
getInstance(Class) - Static method in class org.apache.log4j.Category
 
getInstance(String) - Static method in class org.apache.log4j.Category
 
getLevel() - Method in class org.apache.log4j.Category
Returns the assigned Level, if any, for this Category.
getLogger(String) - Static method in class org.apache.log4j.Logger
 
getLogger(Class) - Static method in class org.apache.log4j.Logger
 
getLogger(String) - Static method in class org.apache.log4j.LogManager
 
getLogger(Class) - Static method in class org.apache.log4j.LogManager
 
getName() - Method in class org.apache.log4j.Category
Returns the obvious.
getPriority() - Method in class org.apache.log4j.Category
Deprecated. Please use getLevel() instead.
getRootLogger() - Static method in class org.apache.log4j.Logger
Does the obvious.
getRootLogger() - Static method in class org.apache.log4j.LogManager
 
getSyslogEquivalent() - Method in class org.apache.log4j.Priority
Return the syslog equivalent of this priority as an integer.

I

info(Object) - Method in class org.apache.log4j.Category
Delegates to Logger.info(String) method in SLF4J.
info(Object, Throwable) - Method in class org.apache.log4j.Category
Delegates to Logger.info(String,Throwable) method in SLF4J.
INFO - Static variable in class org.apache.log4j.Level
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
INFO - Static variable in class org.apache.log4j.Priority
Deprecated. Use Level.INFO instead.
INFO_INT - Static variable in class org.apache.log4j.Priority
 
inherit(Stack) - Static method in class org.apache.log4j.NDC
 
isDebugEnabled() - Method in class org.apache.log4j.Category
Delegates to Logger.isDebugEnabled() method in SLF4J
isEnabledFor(Priority) - Method in class org.apache.log4j.Category
Determines whether the priority passed as parameter is enabled in the underlying SLF4J logger.
isErrorEnabled() - Method in class org.apache.log4j.Category
Delegates to Logger.isErrorEnabled() method in SLF4J
isGreaterOrEqual(Priority) - Method in class org.apache.log4j.Priority
Returns true if this level has a higher or equal level than the level passed as argument, false otherwise.
isInfoEnabled() - Method in class org.apache.log4j.Category
Delegates to Logger.isInfoEnabled() method in SLF4J
isTraceEnabled() - Method in class org.apache.log4j.Logger
Delegates to Logger.isTraceEnabled() method of SLF4J.
isWarnEnabled() - Method in class org.apache.log4j.Category
Delegates tob Logger.isWarnEnabled() method in SLF4J

L

Level - Class in org.apache.log4j
Defines the minimum set of levels recognized by the system, that is OFF, FATAL, ERROR, WARN, INFO, DEBUG and ALL.
Level(int, String, int) - Constructor for class org.apache.log4j.Level
Instantiate a Level object.
log(String, Priority, Object, Throwable) - Method in class org.apache.log4j.Category
 
log(Priority, Object, Throwable) - Method in class org.apache.log4j.Category
 
log(Priority, Object) - Method in class org.apache.log4j.Category
 
Logger - Class in org.apache.log4j
This class is a minimal implementation of the original org.apache.log4j.Logger class (as found in log4j 1.2) delegating all calls to a Logger instance.
LogManager - Class in org.apache.log4j
This class is a minimal implementation of the original org.apache.log4j.LogManager class (as found in log4j 1.2) delegating all calls to SLF4J.
LogManager() - Constructor for class org.apache.log4j.LogManager
 

M

MDC - Class in org.apache.log4j
 
MDC() - Constructor for class org.apache.log4j.MDC
 

N

NDC - Class in org.apache.log4j
A bare-bones implementation of log4j's NDC which compiles and prevents run time exceptions.
NDC() - Constructor for class org.apache.log4j.NDC
 

O

OFF - Static variable in class org.apache.log4j.Level
The OFF has the highest possible rank and is intended to turn off logging.
OFF_INT - Static variable in class org.apache.log4j.Priority
 
org.apache.log4j - package org.apache.log4j
An rather minimal but sufficient implementation redirecting all calls to a log4j logger to a logback logger.

P

peek() - Static method in class org.apache.log4j.NDC
 
pop() - Static method in class org.apache.log4j.NDC
 
Priority - Class in org.apache.log4j
Refrain from using this class directly, use the Level class instead.
Priority() - Constructor for class org.apache.log4j.Priority
Default constructor for deserialization.
Priority(int, String, int) - Constructor for class org.apache.log4j.Priority
Instantiate a level object.
push(String) - Static method in class org.apache.log4j.NDC
 
put(String, String) - Static method in class org.apache.log4j.MDC
 
put(String, Object) - Static method in class org.apache.log4j.MDC
 

R

remove(String) - Static method in class org.apache.log4j.MDC
 
remove() - Static method in class org.apache.log4j.NDC
 
resetConfiguration() - Static method in class org.apache.log4j.LogManager
Implemented as NOP.

S

setMaxDepth(int) - Static method in class org.apache.log4j.NDC
 
shutdown() - Static method in class org.apache.log4j.LogManager
Implemented as NOP.
slf4jLogger - Variable in class org.apache.log4j.Category
 

T

toInt() - Method in class org.apache.log4j.Priority
Returns the integer representation of this level.
toLevel(String) - Static method in class org.apache.log4j.Level
Convert the string passed as argument to a level.
toLevel(int) - Static method in class org.apache.log4j.Level
Convert an integer passed as argument to a level.
toLevel(int, Level) - Static method in class org.apache.log4j.Level
Convert an integer passed as argument to a level.
toLevel(String, Level) - Static method in class org.apache.log4j.Level
Convert the string passed as argument to a level.
toPriority(String) - Static method in class org.apache.log4j.Priority
Deprecated. Please use the Level.toLevel(String) method instead.
toPriority(int) - Static method in class org.apache.log4j.Priority
Deprecated. Please use the Level.toLevel(int) method instead.
toPriority(int, Priority) - Static method in class org.apache.log4j.Priority
Deprecated. Please use the Level.toLevel(int, Level) method instead.
toPriority(String, Priority) - Static method in class org.apache.log4j.Priority
Deprecated. Please use the Level.toLevel(String, Level) method instead.
toString() - Method in class org.apache.log4j.Priority
Returns the string representation of this priority.
TRACE - Static variable in class org.apache.log4j.Level
The TRACE Level designates finer-grained informational events than the DEBUGtrace(Object) - Method in class org.apache.log4j.Logger
Delegates to Logger.trace(String) method in SLF4J.
trace(Object, Throwable) - Method in class org.apache.log4j.Logger
Delegates to Logger.trace(String,Throwable) method in SLF4J.
TRACE_INT - Static variable in class org.apache.log4j.Level
TRACE level integer value.

W

warn(Object) - Method in class org.apache.log4j.Category
Delegates to Logger.warn(String) method in SLF4J.
warn(Object, Throwable) - Method in class org.apache.log4j.Category
Delegates to Logger.warn(String,Throwable) method in SLF4J.
WARN - Static variable in class org.apache.log4j.Level
The WARN level designates potentially harmful situations.
WARN - Static variable in class org.apache.log4j.Priority
Deprecated. Use Level.WARN instead.
WARN_INT - Static variable in class org.apache.log4j.Priority
 

A C D E F G I L M N O P R S T W
Log4j Implemented Over SLF4J 1.6.1-redhat-2

Copyright © 2005-2012 QOS.ch. All Rights Reserved.