http://bugzilla.slf4j.org/show_bug.cgi?id=53

           Summary: slf4j-log4j12 version 1.4.0: trace logs in DEBUG level
           Product: SLF4J
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: Implementations
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


The method public void trace(String msg) calls the underlying log4j logger with
level DEBUG.

The problem is in org.slf4j.impl.Log4jLoggerAdapter line 90.

85 :  /**
86 :   * Log a message object at level TRACE.
87 :   * @param msg - the message object to be logged
88 :   */
89 :  public void trace(String msg) {
90 :      logger.log(FQCN, Level.DEBUG, msg, null);
91 :  }


-- 
Configure bugmail: http://bugzilla.slf4j.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
_______________________________________________
dev mailing list
[email protected]
http://www.slf4j.org/mailman/listinfo/dev

Reply via email to