[jboss-cvs] JBossAS SVN: r88024 - branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 29 16:35:05 EDT 2009


Author: dereed
Date: 2009-04-29 16:35:04 -0400 (Wed, 29 Apr 2009)
New Revision: 88024

Modified:
   branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java
Log:
[JBPAPP-1960] - Reduced some logging severity levels


Modified: branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java
===================================================================
--- branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java	2009-04-29 20:33:27 UTC (rev 88023)
+++ branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java	2009-04-29 20:35:04 UTC (rev 88024)
@@ -401,14 +401,14 @@
       }
       catch(Throwable e)
       {
-    	 log.error("Class loading Task Run failed with exception", e);
+    	 log.trace("Class loading Task Run failed with exception", e);
     	 boolean retry = e instanceof ClassCircularityError
             || e.getClass().equals(LinkageError.class);
          int numCCE = loadTask.incNumCCE();
          
          if( retry && numCCE <= 10 )
          {
-            log.error("Rescheduling failed Class loading Task");
+            log.info("Rescheduling failed Class loading Task");
         	/* Reschedule this task after all existing tasks to allow the
             current load tasks which are conflicting to complete.
             */




More information about the jboss-cvs-commits mailing list