summaryrefslogtreecommitdiff
path: root/qpid/cpp
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
commit44879ab727ee024c21318ac438bf37951fbdc451 (patch)
treebe15d017ea6cd37a5c9c733cec336d298f14b018 /qpid/cpp
parentb749d511fc826a491d3137ed52093fe6be494510 (diff)
downloadqpid-python-44879ab727ee024c21318ac438bf37951fbdc451.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@1521639 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/broker/Link.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/Link.cpp b/qpid/cpp/src/qpid/broker/Link.cpp
index 31685eb1de..cd7ba35dd8 100644
--- a/qpid/cpp/src/qpid/broker/Link.cpp
+++ b/qpid/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;
}