suppress info message on failure to send remove command as this will always fail on shutdown for a vm connection which is ugly for the default config. leave it at debug level

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@795914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2009-07-20 16:52:44 +00:00
parent 3f32e76ac6
commit f998d1b3dc
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class AdvisoryConsumer implements ActiveMQDispatcher {
try { try {
this.connection.asyncSendPacket(info.createRemoveCommand()); this.connection.asyncSendPacket(info.createRemoveCommand());
} catch (JMSException e) { } catch (JMSException e) {
LOG.info("Failed to send remove command: " + e, e); LOG.debug("Failed to send remove command: " + e, e);
} }
this.connection.removeDispatcher(info.getConsumerId()); this.connection.removeDispatcher(info.getConsumerId());
closed = true; closed = true;