[Swift-commit] r3284 - trunk/src/org/griphyn/vdl/karajan

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Mon Apr 12 23:00:17 CDT 2010


Author: hategan
Date: 2010-04-12 23:00:16 -0500 (Mon, 12 Apr 2010)
New Revision: 3284

Modified:
   trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java
Log:
Log source element on error

Modified: trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java
===================================================================
--- trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java	2010-04-13 00:09:50 UTC (rev 3283)
+++ trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java	2010-04-13 04:00:16 UTC (rev 3284)
@@ -26,7 +26,7 @@
 
 	protected void printFailure(FailureNotificationEvent e) {
 		if (logger.isDebugEnabled()) {
-			logger.debug(e.getMessage(), e.getException());
+			logger.debug(e.getFlowElement() + ": " + e.getMessage(), e.getException());
 		}
 		String msg = e.getMessage();
 		if (!"Execution completed with errors".equals(msg)) {




More information about the Swift-commit mailing list