You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2008/01/09 18:28:16 UTC

svn commit: r610472 - /ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobInvoker.java

Author: jonesde
Date: Wed Jan  9 09:28:02 2008
New Revision: 610472

URL: http://svn.apache.org/viewvc?rev=610472&view=rev
Log:
Improvement to error message to better describe what is happening when this value isn't found

Modified:
    ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobInvoker.java

Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobInvoker.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobInvoker.java?rev=610472&r1=610471&r2=610472&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobInvoker.java (original)
+++ ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobInvoker.java Wed Jan  9 09:28:02 2008
@@ -283,7 +283,7 @@
         try {
             ttl = Long.parseLong(ServiceConfigUtil.getElementAttr("thread-pool", "ttl"));
         } catch (NumberFormatException nfe) {
-            Debug.logError("Problems reading values from serviceengine.xml file [" + nfe.toString() + "]. Using defaults.", module);
+            Debug.logError("Problems reading value from attribute [ttl] of element [thread-pool] in serviceengine.xml file [" + nfe.toString() + "]. Using default (" + THREAD_TTL + ").", module);
         }
         return ttl;
     }