SEC-1458: Remove logger field in HttpSessionEventPublisher in favour of direct lookup. Prevents early initialization of logging system when listener is initialized.

This commit is contained in:
Luke Taylor 2010-04-16 16:12:38 +01:00
parent 0521d10069
commit 93deec8d40
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,7 @@ import javax.servlet.http.HttpSessionListener;
public class HttpSessionEventPublisher implements HttpSessionListener {
//~ Static fields/initializers =====================================================================================
private static final Log log = LogFactory.getLog(HttpSessionEventPublisher.class);
private static final String LOGGER_NAME = HttpSessionEventPublisher.class.getName();
//~ Methods ========================================================================================================
@ -60,6 +60,7 @@ public class HttpSessionEventPublisher implements HttpSessionListener {
*/
public void sessionCreated(HttpSessionEvent event) {
HttpSessionCreatedEvent e = new HttpSessionCreatedEvent(event.getSession());
Log log = LogFactory.getLog(LOGGER_NAME);
if (log.isDebugEnabled()) {
log.debug("Publishing event: " + e);
@ -76,6 +77,7 @@ public class HttpSessionEventPublisher implements HttpSessionListener {
*/
public void sessionDestroyed(HttpSessionEvent event) {
HttpSessionDestroyedEvent e = new HttpSessionDestroyedEvent(event.getSession());
Log log = LogFactory.getLog(LOGGER_NAME);
if (log.isDebugEnabled()) {
log.debug("Publishing event: " + e);