[logback-dev] [JIRA] Resolved: (LBCLASSIC-78) NullPointerException in JMX Configurator getLoggerLevel
Ceki Gulcu (JIRA)
noreply-jira at qos.ch
Mon Nov 17 19:01:35 CET 2008
[ http://jira.qos.ch/browse/LBCLASSIC-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Ceki Gulcu resolved LBCLASSIC-78.
---------------------------------
Fix Version/s: 0.9.12
Resolution: Fixed
> 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
> Fix For: 0.9.12
>
>
> 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