User: user57
Date: 01/12/08 23:35:15
Modified: src/main/org/jboss/ejb ContainerFactory.java
Log:
o changed some info logs to debug, when the same information was logged as
info by a component before or after it
o Installer & InstallerFactory create there own Loggers to make them easier
to debug. They don't pass around Loggers anymore, so those contructors
(the the instance where they were used) have been updated to reflect this
change.
Revision Changes Path
1.105 +8 -3 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.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ContainerFactory.java 2001/12/09 03:32:00 1.104
+++ ContainerFactory.java 2001/12/09 07:35:15 1.105
@@ -70,7 +70,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Antman</a>.
* @author <a href="mailto:[EMAIL PROTECTED]">Scott Stark</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Sacha Labourey</a>
-* @version $Revision: 1.104 $
+* @version $Revision: 1.105 $
*/
public class ContainerFactory
extends ServiceMBeanSupport
@@ -350,7 +350,9 @@
undeploy( appUrl );
app.setURL( appUrl );
- log.info( "Deploying:" + appUrl );
+ if (log.isDebugEnabled()) {
+ log.debug( "Deploying: " + appUrl );
+ }
/* Create a subclass of URLClassLoader that allows for dynamic class
loading via the WebServiceMBean
@@ -374,7 +376,10 @@
app.start();
// Done
- log.info( "Deployed application: " + app.getName() );
+ if (log.isDebugEnabled()) {
+ log.debug( "Deployed: " + app.getName() );
+ }
+
// Register deployment. Use the application name in the hashtable
deployments.put( appUrl, app );
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development