Changed log to new logging

This commit is contained in:
obscuren
2015-04-04 13:41:58 +02:00
parent 2683aac9b0
commit c985ce4d78
3 changed files with 16 additions and 10 deletions

View File

@ -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
}