You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by az...@apache.org on 2006/05/17 07:40:47 UTC

svn commit: r407166 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/PrettyPrinter.java

Author: azeez
Date: Tue May 16 22:40:47 2006
New Revision: 407166

URL: http://svn.apache.org/viewcvs?rev=407166&view=rev
Log:
Changed logging level to debug

Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/PrettyPrinter.java

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/PrettyPrinter.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/PrettyPrinter.java?rev=407166&r1=407165&r2=407166&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/PrettyPrinter.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/PrettyPrinter.java Tue May 16 22:40:47 2006
@@ -64,11 +64,11 @@
             // format and overwrite the given input file
             Method format = clazz.getMethod("format", new Class[]{});
             format.invoke(prettifier, new Object[]{});
-            log.info("Pretty print file : " + file);
+            log.debug("Pretty printed file : " + file);
         } catch (ClassNotFoundException e) {
             log.info("Jalopy not found - unable to pretty print " + file);
         } catch (Exception e) {
-            log.info(e);
+            log.warn("Exception occurred while trying to pretty print file " + file, e);
         }
     }
 }