Author: gtully
Date: Mon Jul 20 16:52:44 2009
New Revision: 795914
URL: http://svn.apache.org/viewvc?rev=795914&view=rev
Log:
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
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java?rev=795914&r1=795913&r2=795914&view=diff
==============================================================================
---
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java
(original)
+++
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/AdvisoryConsumer.java
Mon Jul 20 16:52:44 2009
@@ -55,7 +55,7 @@
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;