I know the following log levels in Log4J:
ALL < DEBUG < INFO < WARN < ERROR < FATAL < OFF
But in some probes I found TRACE
and trace() method:
Logger LOG = Logger.getLogger(MyClass.class); LOG.trace("Instance created of AnotherClass");
In my IDE method, trace() not recognized. Is this old Log4J and TRACE library just in some new one?
source share