mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-11 05:00:05 +00:00
eth/downloader: silence "Added N blocks from..." if N == 0
This commit is contained in:
parent
d74ee40c86
commit
3083ec5e32
@ -415,7 +415,7 @@ out:
|
||||
peer.Demote()
|
||||
break
|
||||
}
|
||||
if glog.V(logger.Debug) {
|
||||
if glog.V(logger.Debug) && len(blockPack.blocks) > 0 {
|
||||
glog.Infof("Added %d blocks from: %s\n", len(blockPack.blocks), blockPack.peerId)
|
||||
}
|
||||
// Promote the peer and update it's idle state
|
||||
|
Loading…
Reference in New Issue
Block a user