You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/07/11 06:34:07 UTC

svn commit: r420715 - /incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/ServiceSupport.java

Author: chirino
Date: Mon Jul 10 21:34:06 2006
New Revision: 420715

URL: http://svn.apache.org/viewvc?rev=420715&view=rev
Log:
No need to be so verbose when disposing a service.  If we need to find out why something is going wrong we can enable debug logging.

Modified:
    incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/ServiceSupport.java

Modified: incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/ServiceSupport.java
URL: http://svn.apache.org/viewvc/incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/ServiceSupport.java?rev=420715&r1=420714&r2=420715&view=diff
==============================================================================
--- incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/ServiceSupport.java (original)
+++ incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/ServiceSupport.java Mon Jul 10 21:34:06 2006
@@ -39,7 +39,7 @@
             service.stop();
         }
         catch (Exception e) {
-            log.error("Could not stop service: " + service + ". Reason: " + e, e);
+            log.debug("Could not stop service: " + service + ". Reason: " + e, e);
         }
     }