summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-10-19 14:53:44 +0000
committerAlan Conway <aconway@apache.org>2009-10-19 14:53:44 +0000
commit8703f303249057fa2921b62f665ed33f5aede6fe (patch)
treedef0b4bc1c7d48acbc2bab6778343fe2154fa62e /cpp/src
parentc7673b86588d6f66bfa206bac3486e68b5fa28c8 (diff)
downloadqpid-python-8703f303249057fa2921b62f665ed33f5aede6fe.tar.gz
Change CPG initialization log message to notice level.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@826695 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/cluster/Cpg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/Cpg.cpp b/cpp/src/qpid/cluster/Cpg.cpp
index 02411e6e9f..316b5386f1 100644
--- a/cpp/src/qpid/cluster/Cpg.cpp
+++ b/cpp/src/qpid/cluster/Cpg.cpp
@@ -103,7 +103,7 @@ Cpg::Cpg(Handler& h) : IOHandle(new sys::IOHandlePrivate), handler(h), isShutdow
callbacks.cpg_deliver_fn = &globalDeliver;
callbacks.cpg_confchg_fn = &globalConfigChange;
- QPID_LOG(info, "Initializing CPG");
+ QPID_LOG(notice, "Initializing CPG");
cpg_error_t err = cpg_initialize(&handle, &callbacks);
int retries = 6; // FIXME aconway 2009-08-06: configure, use same config for cman connection.
while (err == CPG_ERR_TRY_AGAIN && --retries) {
@@ -123,7 +123,7 @@ Cpg::~Cpg() {
try {
shutdown();
} catch (const std::exception& e) {
- QPID_LOG(error, "Exception in Cpg destructor: " << e.what());
+ QPID_LOG(error, "Error during CPG shutdown: " << e.what());
}
}