summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2012-04-12 19:52:36 +0000
committerAlan Conway <aconway@apache.org>2012-04-12 19:52:36 +0000
commit0d82babe23a58ff202ae7ffbc9d22e8d75134bc3 (patch)
treea306beef6cb204e26e9cb63efe64a4e9e8c7e134 /cpp/src
parent55a945e14e30ae3d740219dcaaa85135de77ed87 (diff)
downloadqpid-python-0d82babe23a58ff202ae7ffbc9d22e8d75134bc3.tar.gz
QPID-3603: Fix minor log message bugs.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1325473 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/ha/BrokerReplicator.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/ha/BrokerReplicator.cpp b/cpp/src/qpid/ha/BrokerReplicator.cpp
index 9d0043a827..0c29a518a2 100644
--- a/cpp/src/qpid/ha/BrokerReplicator.cpp
+++ b/cpp/src/qpid/ha/BrokerReplicator.cpp
@@ -447,9 +447,10 @@ void BrokerReplicator::doResponseExchange(Variant::Map& values) {
""/*TODO: who is the user?*/,
""/*TODO: what should we use as connection id?*/).second)
{
- QPID_LOG(debug, "HA: Backup catch-up exchange: " << values[NAME]);
+ QPID_LOG(debug, "HA: Backup catch-up exchange: " << values[NAME].asString());
} else {
- QPID_LOG(warning, "HA: Backup catch-up exchange already exists: " << values[QNAME]);
+ QPID_LOG(warning, "HA: Backup catch-up exchange already exists: " <<
+ values[QNAME].asString());
}
}