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);
}
}