[jboss-cvs] JBossAS SVN: r93302 - 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
Tue Sep 8 18:16:13 EDT 2009


Author: dereed
Date: 2009-09-08 18:16:13 -0400 (Tue, 08 Sep 2009)
New Revision: 93302

Modified:
   branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java
Log:
[JBPAPP-2764] Reduced failed classloading in LoadMgr3 logging from ERROR to WARN


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-09-08 22:13:02 UTC (rev 93301)
+++ branches/JBPAPP_4_2_0_GA_CP/jmx/src/main/org/jboss/mx/loading/LoadMgr3.java	2009-09-08 22:16:13 UTC (rev 93302)
@@ -420,7 +420,7 @@
             catch(Throwable ex)
             {
                loadTask.setLoadError(ex);
-               log.error("Failed to reschedule task after LinkageError", ex);               
+               log.warn("Failed to reschedule task after LinkageError", ex);               
             }
             if( trace )
                log.trace("Post LinkageError state, loadTask="+loadTask);
@@ -428,7 +428,7 @@
          else
          {
             loadTask.setLoadError(e);
-            log.error("Not resheduling failed loading task, loadTask="+loadTask, e);
+            log.warn("Not resheduling failed loading task, loadTask="+loadTask, e);
          }
       }
       finally




More information about the jboss-cvs-commits mailing list