[logback-dev] [JIRA] Created: (LBCLASSIC-78) NullPointerException in JMX Configurator getLoggerLevel
Jean-Luc Geering (JIRA)
noreply-jira at qos.ch
Fri Oct 31 09:56:21 CET 2008
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
More information about the logback-dev
mailing list