Author: markt Date: Fri Mar 26 13:47:18 2010 New Revision: 927850 URL: http://svn.apache.org/viewvc?rev=927850&view=rev Log: Improve log message when deploying from configBase to make it clearer where xml file is read from. Javadoc tweak
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=927850&r1=927849&r2=927850&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java (original) +++ tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java Fri Mar 26 13:47:18 2010 @@ -113,7 +113,8 @@ public class HostConfig /** - * Should we deploy XML Context config files? + * Should we deploy XML Context config files packaged with WAR files and + * directories? */ protected boolean deployXML = false; @@ -587,7 +588,8 @@ public class HostConfig // Assume this is a configuration descriptor and deploy it if(log.isInfoEnabled()) { - log.info(sm.getString("hostConfig.deployDescriptor", file)); + log.info(sm.getString("hostConfig.deployDescriptor", file, + configBase.getPath())); } Context context = null; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org