[Jboss-cvs] JBossAS SVN: r56028 - branches/Branch_4_0/tomcat/src/main/org/jboss/web/tomcat/tc5

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 17 11:47:24 EDT 2006


Author: bstansberry at jboss.com
Date: 2006-08-17 11:47:22 -0400 (Thu, 17 Aug 2006)
New Revision: 56028

Modified:
   branches/Branch_4_0/tomcat/src/main/org/jboss/web/tomcat/tc5/TomcatDeployer.java
Log:
[JBAS-3513] Log absence of cluster svcs at WARN

Modified: branches/Branch_4_0/tomcat/src/main/org/jboss/web/tomcat/tc5/TomcatDeployer.java
===================================================================
--- branches/Branch_4_0/tomcat/src/main/org/jboss/web/tomcat/tc5/TomcatDeployer.java	2006-08-17 14:35:29 UTC (rev 56027)
+++ branches/Branch_4_0/tomcat/src/main/org/jboss/web/tomcat/tc5/TomcatDeployer.java	2006-08-17 15:47:22 UTC (rev 56028)
@@ -339,10 +339,12 @@
          }
          catch (ClusteringNotSupportedException e)
          {
-            log.error("Failed to setup clustering, clustering disabled. Exception: ", e);
+            // JBAS-3513 Just log a WARN, not an ERROR
+            log.warn("Failed to setup clustering, clustering disabled. Exception: ", e);
          }
          catch(Throwable t)
          {
+            // TODO consider letting this through and fail the deployment
             log.error("Failed to setup clustering, clustering disabled. Exception: ", t);
          }
       }




More information about the jboss-cvs-commits mailing list