summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-04-16 17:40:14 +0000
committerAlan Conway <aconway@apache.org>2009-04-16 17:40:14 +0000
commit9359cf7975bdc6afe7f8b2b48f61452a21db950b (patch)
treeb50507ba61a068c28ed59c2bbb01b423612777d7 /qpid/cpp
parentb53a41a5badefac56b9251ee643ea59c577fc7d2 (diff)
downloadqpid-python-9359cf7975bdc6afe7f8b2b48f61452a21db950b.tar.gz
Fix log message with incorrect level (critical should be debug).
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@765699 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/cluster/ErrorCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/ErrorCheck.cpp b/qpid/cpp/src/qpid/cluster/ErrorCheck.cpp
index cbe3e3daa4..6132d52126 100644
--- a/qpid/cpp/src/qpid/cluster/ErrorCheck.cpp
+++ b/qpid/cpp/src/qpid/cluster/ErrorCheck.cpp
@@ -71,7 +71,7 @@ void ErrorCheck::delivered(const EventFrame& e) {
throw Exception("Aborted by local failure that did not occur on all replicas");
}
else { // his error is worse/same as mine.
- QPID_LOG(critical, cluster << " Error " << frameSeq << " outcome agrees with " << e.getMemberId());
+ QPID_LOG(debug, cluster << " Error " << frameSeq << " outcome agrees with " << e.getMemberId());
unresolved.erase(e.getMemberId());
checkResolved();
}