NullPointerException in JMX Configurator getLoggerLevel
-------------------------------------------------------

                 Key: LBCLASSIC-78
                 URL: http://jira.qos.ch/browse/LBCLASSIC-78
             Project: logback-classic
          Issue Type: Bug
    Affects Versions: 0.9.11
            Reporter: Jean-Luc Geering
            Assignee: Logback dev list


NullPointerException in JMX Configurator getLoggerLevel:

on line 111, logger.getLevel() can be null.

in ch.qos.logback.classic.jmx.Configurator, lines 110 - 114, replace

 if (logger != null) {
    return logger.getLevel().toString();
} else {
    return EMPTY;
}

with

 if (logger != null && logger.getLevel() != null) {
    return logger.getLevel().toString();
} else {
    return EMPTY;
}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.qos.ch/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
logback-dev mailing list
[email protected]
http://qos.ch/mailman/listinfo/logback-dev

Reply via email to