Author: markt Date: Thu Jun 11 13:13:09 2009 New Revision: 783756 URL: http://svn.apache.org/viewvc?rev=783756&view=rev Log: Log context deployment consistently at info level, regardless of war/dir/xml
Modified: tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java Modified: tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java?rev=783756&r1=783755&r2=783756&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java (original) +++ tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java Thu Jun 11 13:13:09 2009 @@ -582,8 +582,8 @@ 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 @@ 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); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org