aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-04 19:41:58 +0800
committerobscuren <geffobscura@gmail.com>2015-04-04 19:41:58 +0800
commitc985ce4d78db468bd4841705ae600913db6b29b8 (patch)
treec59fbfe4b302e0d400474e46897978c6de6609a9 /eth
parent2683aac9b0505bf7744da5f0d0d0a9040e765723 (diff)
downloadgo-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar
go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.gz
go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.bz2
go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.lz
go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.xz
go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.tar.zst
go-tangerine-c985ce4d78db468bd4841705ae600913db6b29b8.zip
Changed log to new logging
Diffstat (limited to 'eth')
-rw-r--r--eth/protocol.go2
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
}