Author: dims
Date: Mon Jun  5 00:19:26 2006
New Revision: 411694

URL: http://svn.apache.org/viewvc?rev=411694&view=rev
Log:
change log.info to log.debug

Modified:
    
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/util/StAXUtils.java

Modified: 
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/util/StAXUtils.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/util/StAXUtils.java?rev=411694&r1=411693&r2=411694&view=diff
==============================================================================
--- 
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/util/StAXUtils.java
 (original)
+++ 
webservices/commons/trunk/modules/axiom/src/org/apache/axiom/om/util/StAXUtils.java
 Mon Jun  5 00:19:26 2006
@@ -54,7 +54,7 @@
         XMLInputFactory inputFactory = getXMLInputFactory();
         try {
                XMLStreamReader reader = inputFactory.createXMLStreamReader(in, 
encoding);
-               log.info("XMLStreamReader is " + reader.getClass().getName());
+               log.debug("XMLStreamReader is " + reader.getClass().getName());
             return reader;
         } finally {
             releaseXMLInputFactory(inputFactory);
@@ -66,7 +66,7 @@
         XMLInputFactory inputFactory = getXMLInputFactory();
         try {
             XMLStreamReader reader = inputFactory.createXMLStreamReader(in);
-            log.info("XMLStreamReader is " + reader.getClass().getName());
+            log.debug("XMLStreamReader is " + reader.getClass().getName());
             return reader;
         } finally {
             releaseXMLInputFactory(inputFactory);
@@ -78,7 +78,7 @@
         XMLInputFactory inputFactory = getXMLInputFactory();
         try {
             XMLStreamReader reader = inputFactory.createXMLStreamReader(in);
-            log.info("XMLStreamReader is " + reader.getClass().getName());
+            log.debug("XMLStreamReader is " + reader.getClass().getName());
             return reader;
         } finally {
             releaseXMLInputFactory(inputFactory);
@@ -111,7 +111,7 @@
         XMLOutputFactory outputFactory = getXMLOutputFactory();
         try {
             XMLStreamWriter writer = outputFactory.createXMLStreamWriter(out);
-            log.info("XMLStreamWriter is " + writer.getClass().getName());
+            log.debug("XMLStreamWriter is " + writer.getClass().getName());
             return writer;
         } finally {
             releaseXMLOutputFactory(outputFactory);
@@ -123,7 +123,7 @@
         XMLOutputFactory outputFactory = getXMLOutputFactory();
         try {
             XMLStreamWriter writer = outputFactory.createXMLStreamWriter(out);
-            log.info("XMLStreamWriter is " + writer.getClass().getName());
+            log.debug("XMLStreamWriter is " + writer.getClass().getName());
             return writer;
         } finally {
             releaseXMLOutputFactory(outputFactory);



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to