Author: lindner
Date: Mon Apr 26 09:55:48 2010
New Revision: 937987

URL: http://svn.apache.org/viewvc?rev=937987&view=rev
Log:
move documentbuilder logging to fine

Modified:
    
shindig/trunk/java/common/src/main/java/org/apache/shindig/common/xml/XmlUtil.java

Modified: 
shindig/trunk/java/common/src/main/java/org/apache/shindig/common/xml/XmlUtil.java
URL: 
http://svn.apache.org/viewvc/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/xml/XmlUtil.java?rev=937987&r1=937986&r2=937987&view=diff
==============================================================================
--- 
shindig/trunk/java/common/src/main/java/org/apache/shindig/common/xml/XmlUtil.java
 (original)
+++ 
shindig/trunk/java/common/src/main/java/org/apache/shindig/common/xml/XmlUtil.java
 Mon Apr 26 09:55:48 2010
@@ -67,7 +67,8 @@ public class XmlUtil {
           @Override
           protected DocumentBuilder initialValue() {
             try {
-              LOG.info("Created a new document builder");
+              if (LOG.isLoggable(Level.FINE))
+                LOG.fine("Created a new document builder");
               return builderFactory.newDocumentBuilder();
             } catch (ParserConfigurationException e) {
               throw new RuntimeException(e);


Reply via email to