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.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@420716 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-07-11 04:34:56 +00:00
parent 40958b688f
commit d6c75ee25e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public abstract class ServiceSupport implements Service {
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);
}
}