[Jboss-cvs] JBossAS SVN: r56819 - branches/Branch_4_0/jmx/src/main/org/jboss/mx/modelmbean

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 13 17:00:47 EDT 2006


Author: anil.saldhana at jboss.com
Date: 2006-09-13 17:00:46 -0400 (Wed, 13 Sep 2006)
New Revision: 56819

Modified:
   branches/Branch_4_0/jmx/src/main/org/jboss/mx/modelmbean/ModelMBeanInvoker.java
Log:
JBAS-3655: lower the log level of interceptor ctr missing ctr(mbeaninvoker) as the default ctr will be used

Modified: branches/Branch_4_0/jmx/src/main/org/jboss/mx/modelmbean/ModelMBeanInvoker.java
===================================================================
--- branches/Branch_4_0/jmx/src/main/org/jboss/mx/modelmbean/ModelMBeanInvoker.java	2006-09-13 20:37:44 UTC (rev 56818)
+++ branches/Branch_4_0/jmx/src/main/org/jboss/mx/modelmbean/ModelMBeanInvoker.java	2006-09-13 21:00:46 UTC (rev 56819)
@@ -742,11 +742,11 @@
          }
          catch (Throwable t)
          {
-            log.debug("Failed to invoke ctor(MBeanInvoker) for: "
+            log.warn("Failed to invoke ctor(MBeanInvoker) for: "
                + interceptorClass, t); 
             // Try the default ctor
             interceptor = (Interceptor) interceptorClass.newInstance();
-            log.debug("Success:default ctr used to construct:"+ interceptorClass);
+            log.warn("Success:default ctr used to construct:"+ interceptorClass);
          }
          interceptors.add(interceptor);
 




More information about the jboss-cvs-commits mailing list