diff options
| author | Alan Conway <aconway@apache.org> | 2009-07-29 23:34:57 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-07-29 23:34:57 +0000 |
| commit | aaca8710d34e6e238e570f988887c5b0bee76f44 (patch) | |
| tree | 438a5778598062193d6745394bfc3f56c015272f /cpp/src/qpid/cluster/Connection.cpp | |
| parent | d2b1806924dc1abe19691c22ba7a71b1339ace28 (diff) | |
| download | qpid-python-aaca8710d34e6e238e570f988887c5b0bee76f44.tar.gz | |
Provide more informative cluster logging at notice level
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@799124 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp index a898cb5059..03a06e1c09 100644 --- a/cpp/src/qpid/cluster/Connection.cpp +++ b/cpp/src/qpid/cluster/Connection.cpp @@ -439,13 +439,13 @@ void Connection::accumulatedAck(const qpid::framing::SequenceSet& s) { void Connection::exchange(const std::string& encoded) { Buffer buf(const_cast<char*>(encoded.data()), encoded.size()); broker::Exchange::shared_ptr ex = broker::Exchange::decode(cluster.getBroker().getExchanges(), buf); - QPID_LOG(debug, cluster << " decoded exchange " << ex->getName()); + QPID_LOG(debug, cluster << " updated exchange " << ex->getName()); } void Connection::queue(const std::string& encoded) { Buffer buf(const_cast<char*>(encoded.data()), encoded.size()); broker::Queue::shared_ptr q = broker::Queue::decode(cluster.getBroker().getQueues(), buf); - QPID_LOG(debug, cluster << " decoded queue " << q->getName()); + QPID_LOG(debug, cluster << " updated queue " << q->getName()); } void Connection::sessionError(uint16_t , const std::string& msg) { |
