mirror of https://github.com/apache/activemq.git
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:
parent
3f32e76ac6
commit
f998d1b3dc
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue