From 36be92aab257ef700b2d6e0d95ae7462846f3a44 Mon Sep 17 00:00:00 2001 From: markt Date: Thu, 11 Jun 2009 13:13:09 +0000 Subject: [PATCH] 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 --- java/org/apache/catalina/startup/HostConfig.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.11.0