From 5bbe37191afbb25a953e7931bf1a2ce18fbbb8f3 Mon Sep 17 00:00:00 2001 From: vyzo Date: Tue, 5 May 2020 20:42:58 +0300 Subject: [PATCH] downgrade graylist Warn log to Info --- pubsub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubsub.go b/pubsub.go index 9e30a76..228fc1c 100644 --- a/pubsub.go +++ b/pubsub.go @@ -886,7 +886,7 @@ func (p *PubSub) handleIncomingRPC(rpc *RPC) { // ask the router to vet the peer before commiting any processing resources if !p.rt.AcceptFrom(rpc.from) { - log.Warnf("received message from router graylisted peer %s. Dropping RPC", rpc.from) + log.Infof("received message from router graylisted peer %s. Dropping RPC", rpc.from) return }