You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2012/04/17 21:57:38 UTC

svn commit: r1327252 - /ofbiz/trunk/framework/start/src/org/ofbiz/base/start/InstrumenterWorker.java

Author: doogie
Date: Tue Apr 17 19:57:38 2012
New Revision: 1327252

URL: http://svn.apache.org/viewvc?rev=1327252&view=rev
Log:
OPTIMIZE: If the specified instrumentation class is not found, don't
bother printing the thrown exception; this is a standard situation,
where the required jar may not have been downloaded, and the
instrumenter not compiled.

Modified:
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/InstrumenterWorker.java

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/InstrumenterWorker.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/InstrumenterWorker.java?rev=1327252&r1=1327251&r2=1327252&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/InstrumenterWorker.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/InstrumenterWorker.java Tue Apr 17 19:57:38 2012
@@ -71,7 +71,6 @@ public final class InstrumenterWorker {
             e.printStackTrace();
             return srcPaths;
         } catch (ClassNotFoundException e) {
-            System.err.println("InstrumenterWorker.instrument - Code instrumentation has been disabled, unable to find instrumenter class " + instrumenterClassName);
             return srcPaths;
         }
         ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(ManagementFactory.getOperatingSystemMXBean().getAvailableProcessors());