Skip to content

Commit

Permalink
Changed XmlParserImpl to use official WB logging rather than Log4J
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@2096 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
drallen committed Mar 18, 2009
1 parent e070d26 commit d99ace0
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -9,17 +9,18 @@
import java.util.List;
import java.util.Set;

import org.apache.log4j.Logger;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import org.jboss.webbeans.introspector.AnnotatedItem;
import org.jboss.webbeans.log.Log;
import org.jboss.webbeans.log.Logging;

public class XmlParserImpl // implements XmlParser
{

private static Logger log = Logger.getLogger(XmlParserImpl.class);
private static Log log = Logging.getLog(XmlParserImpl.class);

public Set<AnnotatedItem<?, ?>> parse(Set<URL> xmls)
{
Expand Down

0 comments on commit d99ace0

Please sign in to comment.