Skip to content

Commit

Permalink
logging upgraded
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Oct 9, 2014
1 parent 0d9f9b3 commit 1b3197e
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -24,7 +24,8 @@
import java.util.regex.Pattern;
import java.util.regex.Matcher;

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

import org.w3c.dom.Document;
import org.w3c.dom.Element;
Expand All @@ -38,7 +39,7 @@
*/
public class UserRegistrationResource extends BasicXMLResource {

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

static String NAMESPACE = "http://www.wyona.org/yanel/user-registration/1.0";

Expand Down

0 comments on commit 1b3197e

Please sign in to comment.