From f998d1b3dcb7b720bca16c65f0bbadbbfac7a6b3 Mon Sep 17 00:00:00 2001 From: Gary Tully Date: Mon, 20 Jul 2009 16:52:44 +0000 Subject: [PATCH] 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 --- .../src/main/java/org/apache/activemq/AdvisoryConsumer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java b/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java index 0d36846b0c..a537d9ab41 100755 --- a/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java +++ b/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java @@ -55,7 +55,7 @@ public class AdvisoryConsumer implements ActiveMQDispatcher { try { this.connection.asyncSendPacket(info.createRemoveCommand()); } 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()); closed = true;