From 8703f303249057fa2921b62f665ed33f5aede6fe Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Mon, 19 Oct 2009 14:53:44 +0000 Subject: 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 --- cpp/src/qpid/cluster/Cpg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src') 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()); } } -- cgit v1.2.1