http://bugzilla.slf4j.org/show_bug.cgi?id=245
Summary: incorrect isTraceEnabled call in XLogger
Product: SLF4J
Version: 1.6.x
Platform: PC
OS/Version: Mac OS X 10.3
Status: NEW
Severity: major
Priority: P1
Component: slf4j-ext
AssignedTo: [email protected]
ReportedBy: [email protected]
public void exit() {
if (instanceofLAL && logger.isTraceEnabled(ENTRY_MARKER)) {
((LocationAwareLogger) logger).log(EXIT_MARKER, FQCN,
LocationAwareLogger.TRACE_INT, EXIT_MESSAGE_0, null, null);
}
}
should be:
...
if (instanceofLAL && logger.isTraceEnabled(EXIT_MARKER)) {
...
--
Configure bugmail: http://bugzilla.slf4j.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
slf4j-dev mailing list
[email protected]
http://qos.ch/mailman/listinfo/slf4j-dev