summaryrefslogtreecommitdiff
path: root/cpp/src
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
commit78e08815915b567e127babcb2210ba4fa3640df1 (patch)
treea985bd2057fe673fb6d05b3d569d9748e33a1b93 /cpp/src
parent70d53b24d128d6a29d96936c8621e338967d659f (diff)
downloadqpid-python-78e08815915b567e127babcb2210ba4fa3640df1.tar.gz
Fix log message with incorrect level (critical should be debug).
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@765699 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/cluster/ErrorCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/ErrorCheck.cpp b/cpp/src/qpid/cluster/ErrorCheck.cpp
index cbe3e3daa4..6132d52126 100644
--- a/cpp/src/qpid/cluster/ErrorCheck.cpp
+++ b/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();
}