User: andreas 
  Date: 00/12/07 10:16:09

  Modified:    src/main/org/jboss/ejb ContainerFactory.java
  Log:
  Changes to ServiceMBean therefore that if the Default-
  Log class is not available then it does not logging.
  Thus I could extract the JMX Connector (server-side)
  from jBoss therefore that it can be used elsewhere.
  Both (server- and client-side) connector archives are then
  put in the new directory external which should keep all
  archives developed under jBoss but available to other
  groups.
  
  Revision  Changes    Path
  1.60      +3 -3      jboss/src/main/org/jboss/ejb/ContainerFactory.java
  
  Index: ContainerFactory.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/ejb/ContainerFactory.java,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- ContainerFactory.java     2000/12/07 15:44:09     1.59
  +++ ContainerFactory.java     2000/12/07 18:16:09     1.60
  @@ -79,7 +79,7 @@
   *   @author <a href="mailto:[EMAIL PROTECTED]">Sebastien Alborini</a>
   *   @author Peter Antman ([EMAIL PROTECTED])
   *
  -*   @version $Revision: 1.59 $
  +*   @version $Revision: 1.60 $
   */
   public class ContainerFactory
       extends org.jboss.util.ServiceMBeanSupport
  @@ -96,7 +96,7 @@
      File tmpDir;
   
      // The logger of this service
  -   Log log = new Log(getName());
  +   Log log = Log.createLog(getName());
   
      // A map of current deployments. If a deployment is made and it is already in 
this map,
      // then undeploy it first (i.e. make it a re-deploy).
  @@ -315,7 +315,7 @@
            cl = new URLClassLoader(urls, Thread.currentThread().getContextClassLoader 
()); 
   
            // Check validity
  -         Log.setLog(new Log("Verifier"));
  +         Log.setLog(Log.createLog("Verifier"));
   
            // wrapping this into a try - catch block to prevent errors in
            // verifier from stopping the deployment
  
  
  

Reply via email to