Skip to content

Commit

Permalink
logging updated
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Jun 10, 2015
1 parent 08aa113 commit cc00146
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core/java/org/wyona/yanel/core/Environment.java
Expand Up @@ -21,14 +21,15 @@

import org.wyona.security.core.api.Identity;

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

/**
* The environment stores items which belong to the environment from which a resource
* is called, i.e. the request, the response, the identity, the state of view, and the resource container path.
*/
public class Environment {
private static Logger log = Logger.getLogger(Environment.class);
private static Logger log = LogManager.getLogger(Environment.class);

private HttpServletRequest request;
private HttpServletResponse response;
Expand Down

0 comments on commit cc00146

Please sign in to comment.