diff options
-rw-r--r-- | java/broker/src/main/java/org/apache/qpid/server/exchange/TopicExchange.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/java/broker/src/main/java/org/apache/qpid/server/exchange/TopicExchange.java b/java/broker/src/main/java/org/apache/qpid/server/exchange/TopicExchange.java index 6e60d95700..1245efdafa 100644 --- a/java/broker/src/main/java/org/apache/qpid/server/exchange/TopicExchange.java +++ b/java/broker/src/main/java/org/apache/qpid/server/exchange/TopicExchange.java @@ -205,19 +205,11 @@ public class TopicExchange extends AbstractExchange ? AMQShortString.EMPTY_STRING : new AMQShortString(payload.getRoutingKey()); - _logger.info("Message routing key: " + routingKey ); - // The copy here is unfortunate, but not too bad relevant to the amount of // things created and copied in getMatchedQueues ArrayList<BaseQueue> queues = new ArrayList<BaseQueue>(); queues.addAll(getMatchedQueues(payload, routingKey)); - for(BaseQueue q : queues) - { - _logger.info("Matched Queue: " + q.getNameShortString() ); - } - - if(queues == null || queues.isEmpty()) { _logger.info("Message routing key: " + payload.getRoutingKey() + " No routes."); |