diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2010-07-05 11:16:47 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2010-07-05 11:16:47 +0000 |
| commit | e7699d4097e1d0d2b8753fe4e17547a5821abf5a (patch) | |
| tree | 6eb6cc246af617e7b709df595f936e7349ed3318 /qpid/java | |
| parent | d79b57a2d19bde77e16c508c375c992d44bc8cba (diff) | |
| download | qpid-python-e7699d4097e1d0d2b8753fe4e17547a5821abf5a.tar.gz | |
QPID-1447 : Added some addition debug log to queue to aid understanding when queues are reconfigured
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@960551 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java index c4567b2e8b..d47d229658 100644 --- a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java +++ b/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java @@ -507,6 +507,11 @@ public class SimpleAMQQueue implements AMQQueue, Subscription.StateListener //Reconfigure the queue for to reflect this new binding. ConfigurationPlugin config = getVirtualHost().getConfiguration().getQueueConfiguration(this); + if (_logger.isDebugEnabled()) + { + _logger.debug("Reconfiguring queue(" + this + ") with config:" + config + " was "+ _queueConfiguration); + } + if (config != null) { // Reconfigure with new config. |
