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 | 81ef18a325f6893ad062be90be2c5be13eb6a330 (patch) | |
| tree | 6bd71b933f5827c2f8de674d182295124764892a /java | |
| parent | 98d957117da134952545dba32805653ef9292838 (diff) | |
| download | qpid-python-81ef18a325f6893ad062be90be2c5be13eb6a330.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/qpid@960551 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rw-r--r-- | java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java b/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java index c4567b2e8b..d47d229658 100644 --- a/java/broker/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java +++ b/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. |
