[Swift-commit] r5231 - trunk/src/org/griphyn/vdl/karajan
wozniak at ci.uchicago.edu
wozniak at ci.uchicago.edu
Thu Oct 13 14:55:45 CDT 2011
Author: wozniak
Date: 2011-10-13 14:55:45 -0500 (Thu, 13 Oct 2011)
New Revision: 5231
Modified:
trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java
Log:
Demote stack dump but retain swift.home
Modified: trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java
===================================================================
--- trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java 2011-10-13 19:54:53 UTC (rev 5230)
+++ trunk/src/org/griphyn/vdl/karajan/VDL2ExecutionContext.java 2011-10-13 19:55:45 UTC (rev 5231)
@@ -63,9 +63,11 @@
}
public void start(VariableStack stack) {
- if (logger.isInfoEnabled()) {
- logger.info(stack);
+ if (logger.isDebugEnabled()) {
+ logger.debug(stack);
}
+ logger.info("swift.home = " +
+ System.getProperty("swift.home"));
super.start(stack);
}
}
More information about the Swift-commit
mailing list