Skip to content

Commit

Permalink
log4j upgraded
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Jan 30, 2014
1 parent 61560c7 commit 2479bec
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -6,14 +6,15 @@

import java.util.HashMap;

import org.apache.log4j.Logger;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;

/**
*
*/
public class SessionCounter implements HttpSessionListener {

private static Logger log = Logger.getLogger(SessionCounter.class);
private static Logger log = LogManager.getLogger(SessionCounter.class);

private static HashMap activeSessions = new HashMap();

Expand Down

0 comments on commit 2479bec

Please sign in to comment.