User: starksm 
  Date: 01/05/04 01:20:30

  Modified:    src/docs howtombeans.xml
  Log:
  Remove the use of log from the non-ServiceMBeanSupport version
  
  Revision  Changes    Path
  1.8       +2 -2      manual/src/docs/howtombeans.xml
  
  Index: howtombeans.xml
  ===================================================================
  RCS file: /cvsroot/jboss/manual/src/docs/howtombeans.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- howtombeans.xml   2001/04/22 20:04:02     1.7
  +++ howtombeans.xml   2001/05/04 08:20:30     1.8
  @@ -167,7 +167,7 @@
           InitialContext rootCtx = new InitialContext();
           // Get the parent context into which we are to bind
           Name fullName = rootCtx.getNameParser("").parse(jndiName);
  -        log.debug("fullName="+fullName);
  +        System.out.println("fullName="+fullName);
           Name parentName = fullName;
           if( fullName.size() > 1 )
               parentName = fullName.getPrefix(fullName.size()-1);
  @@ -188,7 +188,7 @@
           }
           catch(NamingException e)
           {
  -            log.exception(e);
  +            e.printStackTrace();
           }
       }
   }
  
  
  

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

Reply via email to