You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2013/09/10 22:47:27 UTC

svn commit: r1521639 - /qpid/trunk/qpid/cpp/src/qpid/broker/Link.cpp

Author: aconway
Date: Tue Sep 10 20:47:27 2013
New Revision: 1521639

URL: http://svn.apache.org/r1521639
Log:
NO-JIRA: Demote fail over message from notice to info.

Fail over is normal in clustered environments, does not deserve notice status.

Modified:
    qpid/trunk/qpid/cpp/src/qpid/broker/Link.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/broker/Link.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/broker/Link.cpp?rev=1521639&r1=1521638&r2=1521639&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/broker/Link.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/broker/Link.cpp Tue Sep 10 20:47:27 2013
@@ -536,7 +536,7 @@ bool Link::tryFailoverLH() {
     if (url.empty()) return false;
     Address next = url[reconnectNext++];
     if (next.host != host || next.port != port || next.protocol != transport) {
-        QPID_LOG(notice, "Inter-broker link '" << name << "' failing over to " << next);
+        QPID_LOG(info, "Inter-broker link '" << name << "' failing over to " << next);
         reconnectLH(next);
         return true;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org