From 54f68e8a480424fdff8bd1ab5363c55adb1d2db6 Mon Sep 17 00:00:00 2001 From: Nirvana Date: Wed, 10 Aug 2016 02:12:28 -0500 Subject: [PATCH] Dial back the noisiness of the connections logging --- p2p/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/connection.go b/p2p/connection.go index 8301158c0a..d475756993 100644 --- a/p2p/connection.go +++ b/p2p/connection.go @@ -222,7 +222,7 @@ func (c *Connection) runLoop() { func (c *Connection) setNotes(format string, v ...interface{}) { c.notes = fmt.Sprintf(format, v...) - significant(c.peer.PeerIdent(), c.notes) + notes(c.peer.PeerIdent(), c.notes) } // dialLoop: dials the connection until giving up. Called in offline or initializing states.