Don't need an INFO log message every 30s when the FarmWarDeployer is running
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 28 Jan 2011 17:41:45 +0000 (17:41 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 28 Jan 2011 17:41:45 +0000 (17:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1064791 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/ha/deploy/WarWatcher.java

index b74ffea..2e7cfaf 100644 (file)
@@ -75,8 +75,8 @@ public class WarWatcher {
      * check for modification and send notification to listener
      */
     public void check() {
-        if (log.isInfoEnabled())
-            log.info("check cluster wars at " + watchDir);
+        if (log.isDebugEnabled())
+            log.debug("check cluster wars at " + watchDir);
         File[] list = watchDir.listFiles(new WarFilter());
         if (list == null)
             list = new File[0];