summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-09-10 20:47:27 +0000
committerAlan Conway <aconway@apache.org>2013-09-10 20:47:27 +0000
commitdc889d2f15a62497239e7f62d328355237698dcd (patch)
tree62e50256b0614599af2d82249ff8bb974f23fc6d /cpp/src
parent062206338c495208912cfecad9a26cdde6c44930 (diff)
downloadqpid-python-dc889d2f15a62497239e7f62d328355237698dcd.tar.gz
NO-JIRA: Demote fail over message from notice to info.
Fail over is normal in clustered environments, does not deserve notice status. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1521639 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/broker/Link.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Link.cpp b/cpp/src/qpid/broker/Link.cpp
index 31685eb1de..cd7ba35dd8 100644
--- a/cpp/src/qpid/broker/Link.cpp
+++ b/cpp/src/qpid/broker/Link.cpp
@@ -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;
}