Log context deployment consistently at info level, regardless of war/dir/xml
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 11 Jun 2009 13:13:09 +0000 (13:13 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 11 Jun 2009 13:13:09 +0000 (13:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@783756 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/HostConfig.java

index 07b46eb..66cd963 100644 (file)
@@ -582,8 +582,8 @@ public class HostConfig
         DeployedApplication deployedApp = new DeployedApplication(contextPath);
 
         // Assume this is a configuration descriptor and deploy it
-        if(log.isDebugEnabled()) {
-            log.debug(sm.getString("hostConfig.deployDescriptor", file));
+        if(log.isInfoEnabled()) {
+            log.info(sm.getString("hostConfig.deployDescriptor", file));
         }
 
         Context context = null;
@@ -933,8 +933,8 @@ public class HostConfig
             return;
 
         // Deploy the application in this directory
-        if( log.isDebugEnabled() ) 
-            log.debug(sm.getString("hostConfig.deployDir", file));
+        if( log.isInfoEnabled() ) 
+            log.info(sm.getString("hostConfig.deployDir", file));
         try {
             Context context = null;
             File xml = new File(dir, Constants.ApplicationContextXml);