From: markt Date: Thu, 11 Jun 2009 13:13:09 +0000 (+0000) Subject: Log context deployment consistently at info level, regardless of war/dir/xml X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=36be92aab257ef700b2d6e0d95ae7462846f3a44;p=tomcat7.0 Log context deployment consistently at info level, regardless of war/dir/xml git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@783756 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/startup/HostConfig.java b/java/org/apache/catalina/startup/HostConfig.java index 07b46eb96..66cd96332 100644 --- a/java/org/apache/catalina/startup/HostConfig.java +++ b/java/org/apache/catalina/startup/HostConfig.java @@ -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);