Modified: ofbiz/branches/release10.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release10.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java?rev=1335935&r1=1335934&r2=1335935&view=diff==============================================================================
--- ofbiz/branches/release10.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java (original)
+++ ofbiz/branches/release10.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java Wed May 9 05:54:41 2012
@@ -289,11 +289,11 @@ public class WebToolsServices {
}
// pause in between files
if (pauseLong > 0) {
- Debug.log("Pausing for [" + pauseLong + "] seconds - " + UtilDateTime.nowTimestamp());
+ Debug.logInfo("Pausing for [" + pauseLong + "] seconds - " + UtilDateTime.nowTimestamp(), module);
try {
Thread.sleep((pauseLong * 1000));
} catch (InterruptedException ie) {
- Debug.log("Pause finished - " + UtilDateTime.nowTimestamp());
+ Debug.logInfo("Pause finished - " + UtilDateTime.nowTimestamp(), module);
}
}
}