You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2009/10/28 16:32:00 UTC

svn commit: r830595 - /qpid/branches/0.5.x-dev/qpid/cpp/src/qpid/cluster/Cpg.cpp

Author: ritchiem
Date: Wed Oct 28 15:31:59 2009
New Revision: 830595

URL: http://svn.apache.org/viewvc?rev=830595&view=rev
Log:
Change CPG initialization log message to notice level.

Modified:
    qpid/branches/0.5.x-dev/qpid/cpp/src/qpid/cluster/Cpg.cpp

Modified: qpid/branches/0.5.x-dev/qpid/cpp/src/qpid/cluster/Cpg.cpp
URL: http://svn.apache.org/viewvc/qpid/branches/0.5.x-dev/qpid/cpp/src/qpid/cluster/Cpg.cpp?rev=830595&r1=830594&r2=830595&view=diff
==============================================================================
--- qpid/branches/0.5.x-dev/qpid/cpp/src/qpid/cluster/Cpg.cpp (original)
+++ qpid/branches/0.5.x-dev/qpid/cpp/src/qpid/cluster/Cpg.cpp Wed Oct 28 15:31:59 2009
@@ -103,7 +103,7 @@
     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 @@
     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());
     }
 }
 



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org