summaryrefslogtreecommitdiff
path: root/qpid/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
commit1fd64faa22d3dfb04bf38239140baaf7f3e80e77 (patch)
tree58f69632c9bbf681794d83459b92cc6084456b14 /qpid/cpp/src
parent01fdba286fc5321411d45b4904ee88f639fb10f8 (diff)
downloadqpid-python-1fd64faa22d3dfb04bf38239140baaf7f3e80e77.tar.gz
Change CPG initialization log message to notice level.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@826695 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/cluster/Cpg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/cluster/Cpg.cpp b/qpid/cpp/src/qpid/cluster/Cpg.cpp
index 02411e6e9f..316b5386f1 100644
--- a/qpid/cpp/src/qpid/cluster/Cpg.cpp
+++ b/qpid/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());
}
}