From 98a9d5d42413c6590be3b5d32a44898af4a59238 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Sun, 19 Apr 2015 18:05:58 -0700 Subject: [PATCH] Lower the severity of some PeerFinder logging --- src/ripple/peerfinder/impl/Logic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ripple/peerfinder/impl/Logic.h b/src/ripple/peerfinder/impl/Logic.h index 5c7b7f5982..7c446b9460 100644 --- a/src/ripple/peerfinder/impl/Logic.h +++ b/src/ripple/peerfinder/impl/Logic.h @@ -282,7 +282,7 @@ public: auto const iter = state->connected_addresses.find (remote_endpoint); if (iter != state->connected_addresses.end()) { - if (m_journal.warning) m_journal.warning << beast::leftw (18) << + if (m_journal.debug) m_journal.debug << beast::leftw (18) << "Logic dropping inbound " << remote_endpoint << " as duplicate"; return SlotImp::ptr(); @@ -353,7 +353,7 @@ public: if (state->slots.find (remote_endpoint) != state->slots.end ()) { - if (m_journal.warning) m_journal.warning << beast::leftw (18) << + if (m_journal.debug) m_journal.debug << beast::leftw (18) << "Logic dropping " << remote_endpoint << " as duplicate connect"; return SlotImp::ptr (); @@ -768,7 +768,7 @@ public: return ep.address == other.address; })) { - if (m_journal.warning) m_journal.warning << beast::leftw (18) << + if (m_journal.debug) m_journal.debug << beast::leftw (18) << "Endpoints drop " << ep.address << " as duplicate"; iter = list.erase (iter);