From 796b0bf0b689d075fefad9081cd64fdfdf8f16c1 Mon Sep 17 00:00:00 2001 From: "Daniel A. Nagy" Date: Fri, 13 Feb 2015 11:57:32 +0100 Subject: [PATCH] Message received is a debug message, not a warning --- p2p/peer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/peer.go b/p2p/peer.go index c81a8444e1..8987f48f41 100644 --- a/p2p/peer.go +++ b/p2p/peer.go @@ -300,7 +300,7 @@ func (p *Peer) dispatch(msg Msg, protoDone chan struct{}) (wait bool, err error) // of it and move on to the next message buf, err := ioutil.ReadAll(msg.Payload) if len(buf) > 0 { - p.Warnf("Received message %x", buf) + p.Debugf("Received message %x", buf) } if err != nil { return false, err