Matt Bishop
commented on
LOGBACK-740
NPE in StaticLoggerBinder
This is from the web.xml for the BROKEN state:
<listener>
<listener-class>com.elasticpath.dcapi.web.listener.SLF4JBridgeListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
If you move the bridge listener above the ContextLoaderListener then you will resolve the error.
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your
JIRA administrators
.
For more information on JIRA, see:
http://www.atlassian.com/software/jira
<listener>
<listener-class>com.elasticpath.dcapi.web.listener.SLF4JBridgeListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
If you move the bridge listener above the ContextLoaderListener then you will resolve the error.