svn commit: r562991 - /ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r562991 - /ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java

jonesde
Author: jonesde
Date: Sun Aug  5 16:55:33 2007
New Revision: 562991

URL: http://svn.apache.org/viewvc?view=rev&rev=562991
Log:
Changed this message from info to warning to make sure it gets logged; also considering that this might be good to leave on permanently to help handle the weird cases that always seem to come up with integrations

Modified:
    ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java

Modified: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java?view=diff&rev=562991&r1=562990&r2=562991
==============================================================================
--- ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java (original)
+++ ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisServices.java Sun Aug  5 16:55:33 2007
@@ -344,7 +344,7 @@
             xmlText = xmlTextBuf.toString();
             
             // DEJ20070804 adding this temporarily for debugging, should be changed to verbose at some point in the future
-            Debug.logInfo("Received OAGIS XML message, here is the text: \n" + xmlText, module);
+            Debug.logWarning("Received OAGIS XML message, here is the text: \n" + xmlText, module);
 
             ByteArrayInputStream bis = new ByteArrayInputStream(xmlText.getBytes("UTF-8"));
             doc = UtilXml.readXmlDocument(bis, true, "OagisMessage");