org.apache.log4j
public class Logger extends Category
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.
Method Summary | |
---|---|
static Logger | getLogger(String name) |
static Logger | getLogger(Class clazz) |
static Logger | getRootLogger()
Does the obvious.
|
boolean | isTraceEnabled()
Delegates to Logger
method of SLF4J. |
void | trace(Object message)
Delegates to trace method in SLF4J. |
void | trace(Object message, Throwable t)
Delegates to trace
method in SLF4J. |
Returns: