diff options
Diffstat (limited to 'eth')
-rw-r--r-- | eth/protocol.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol.go b/eth/protocol.go index a0ab177cd..09355cfcd 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -349,7 +349,7 @@ func (self *ethProtocol) handleStatus() error { return self.protoError(ErrSuspendedPeer, "") } - self.peer.Infof("Peer is [eth] capable (%d/%d). TD=%v H=%x\n", status.ProtocolVersion, status.NetworkId, status.TD, status.CurrentBlock[:4]) + self.peer.Debugf("Peer is [eth] capable (%d/%d). TD=%v H=%x\n", status.ProtocolVersion, status.NetworkId, status.TD, status.CurrentBlock[:4]) return nil } |