[Jboss-cvs] JBossAS SVN: r56410 - branches/JEE5_TCK/system/src/main/org/jboss/deployment

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 29 14:54:08 EDT 2006


Author: dimitris at jboss.org
Date: 2006-08-29 14:54:06 -0400 (Tue, 29 Aug 2006)
New Revision: 56410

Modified:
   branches/JEE5_TCK/system/src/main/org/jboss/deployment/MainDeployer.java
Log:
JBAS-3584, for duplicate undeploys change logging level from WARN to DEBUG

Modified: branches/JEE5_TCK/system/src/main/org/jboss/deployment/MainDeployer.java
===================================================================
--- branches/JEE5_TCK/system/src/main/org/jboss/deployment/MainDeployer.java	2006-08-29 18:49:50 UTC (rev 56409)
+++ branches/JEE5_TCK/system/src/main/org/jboss/deployment/MainDeployer.java	2006-08-29 18:54:06 UTC (rev 56410)
@@ -610,7 +610,7 @@
       }
       else
       {
-         log.warn("undeploy '" + url + "' : package not deployed");
+         log.debug("undeploy '" + url + "' : package not deployed");
       }
    }
 
@@ -625,9 +625,10 @@
    {
       undeploy(di, false);
    }
+   
    protected void undeploy(DeploymentInfo di, boolean isShutdown)
    {
-      log.debug("Undeploying "+di.url);
+      log.debug("Undeploying " + di.url + ", isShutdown=" + isShutdown);
       stop(di);
       destroy(di);
    }




More information about the jboss-cvs-commits mailing list