[Swift-commit] r2517 - trunk/src/org/griphyn/vdl/engine

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Mon Feb 9 07:42:54 CST 2009


Author: benc
Date: 2009-02-09 07:42:53 -0600 (Mon, 09 Feb 2009)
New Revision: 2517

Modified:
   trunk/src/org/griphyn/vdl/engine/Karajan.java
Log:
xml validation errors shown at warning level - they should never appear in normal operation and they are useful to have very visible for debugging such things

Modified: trunk/src/org/griphyn/vdl/engine/Karajan.java
===================================================================
--- trunk/src/org/griphyn/vdl/engine/Karajan.java	2009-02-09 13:01:28 UTC (rev 2516)
+++ trunk/src/org/griphyn/vdl/engine/Karajan.java	2009-02-09 13:42:53 UTC (rev 2517)
@@ -135,13 +135,11 @@
 			logger.info("Validation of XML intermediate file was successful");
 		} else {
 			logger.warn("Validation of XML intermediate file failed.");
-				// these errors look rather scary, so output them at
-				// debug level
-			logger.debug("Validation errors:");
+			logger.warn("Validation errors:");
 			Iterator i = errors.iterator();
 			while(i.hasNext()) {
 				XmlError error = (XmlError) i.next();
-				logger.debug(error.toString());
+				logger.warn(error.toString());
 			}
 			System.exit(3);
 		}




More information about the Swift-commit mailing list