User: user57  
  Date: 01/12/08 19:36:01

  Modified:    src/main/org/jboss/system ServiceCreator.java
  Log:
   o info messages to debug
  
  Revision  Changes    Path
  1.7       +4 -5      jboss/src/main/org/jboss/system/ServiceCreator.java
  
  Index: ServiceCreator.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/system/ServiceCreator.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ServiceCreator.java       2001/12/09 02:37:54     1.6
  +++ ServiceCreator.java       2001/12/09 03:36:01     1.7
  @@ -24,7 +24,7 @@
    * @see Service
    * 
    * @author <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
  - * @version $Revision: 1.6 $
  + * @version $Revision: 1.7 $
    * 
    * <p><b>Revisions:</b>
    * <p><b>2001/08/03 marcf </b>
  @@ -57,7 +57,6 @@
       */
      public ObjectInstance create(Element mbeanElement) throws Exception
      {
  -             
         ObjectName name = parseObjectName(mbeanElement);
                
         // marcf fixme add and remove the classlaoder from the controller
  @@ -79,7 +78,7 @@
         // get the constructor params/sig to use
         ConstructorInfo constructor =
            ConstructorInfo.create(mbeanElement);
  -      log.info("About to create bean: "+name);
  +      log.debug("About to create bean: "+name);
                
         // Create the MBean instance
         try 
  @@ -89,7 +88,7 @@
                                                         loader,
                                                         constructor.params,
                                                         constructor.signature);
  -         log.info("Created bean: "+name);
  +         log.debug("Created bean: "+name);
                
            return instance;
        
  @@ -100,7 +99,7 @@
            try 
            {
               server.unregisterMBean(name);
  -         } catch (Exception othere) 
  +         } catch (Exception ignore)
            { } // end of try-catch
            
            throw e;
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to