User: user57  
  Date: 01/07/05 20:22:15

  Modified:    src/main/org/jboss/ejb ContainerFactory.java
  Log:
  Changed the name passed to Log.createLog() to a fq classname.
  
  Revision  Changes    Path
  1.81      +2 -2      jboss/src/main/org/jboss/ejb/ContainerFactory.java
  
  Index: ContainerFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/ContainerFactory.java,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- ContainerFactory.java     2001/06/25 17:51:10     1.80
  +++ ContainerFactory.java     2001/07/06 03:22:15     1.81
  @@ -81,7 +81,7 @@
   *   @author <a href="mailto:[EMAIL PROTECTED]";>Peter Antman</a>.
   *   @author <a href="mailto:[EMAIL PROTECTED]";>Scott Stark</a>
   *
  -*   @version $Revision: 1.80 $
  +*   @version $Revision: 1.81 $
   */
   public class ContainerFactory
     extends org.jboss.util.ServiceMBeanSupport
  @@ -105,7 +105,7 @@
     // Temp directory where deployed jars are stored
     File tmpDir;
     // The logger of this service
  -  Log log = Log.createLog( getName() );
  +  Log log = Log.createLog(this.getClass().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).
     HashMap deployments = new HashMap();
  
  
  

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

Reply via email to