Skip to content

Commit

Permalink
logger improved
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Apr 15, 2014
1 parent b7525ba commit 666893a
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -2,7 +2,8 @@

import java.io.IOException;

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

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
Expand All @@ -15,7 +16,7 @@
*/
public class XMLSerializer extends AbstractSerializer {

private static Logger log = Logger.getLogger(XMLSerializer.class);
private static Logger log = LogManager.getLogger(XMLSerializer.class);
protected String pendingElement = null;
protected boolean doIndent;
protected boolean omitDoctype;
Expand Down

0 comments on commit 666893a

Please sign in to comment.