diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-04 19:41:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-04 19:41:58 +0800 |
commit | c985ce4d78db468bd4841705ae600913db6b29b8 (patch) | |
tree | c59fbfe4b302e0d400474e46897978c6de6609a9 /eth | |
parent | 2683aac9b0505bf7744da5f0d0d0a9040e765723 (diff) | |
download | go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.gz go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.zst go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.zip |
Changed log to new logging
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 } |