mirror of https://github.com/status-im/op-geth.git
Merge pull request #1106 from karalabe/silence-useless-downloader-log
eth/downloader: silence "Added N blocks from..." if N == 0
This commit is contained in:
commit
365eea9fba
|
@ -415,7 +415,7 @@ out:
|
||||||
peer.Demote()
|
peer.Demote()
|
||||||
break
|
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)
|
glog.Infof("Added %d blocks from: %s\n", len(blockPack.blocks), blockPack.peerId)
|
||||||
}
|
}
|
||||||
// Promote the peer and update it's idle state
|
// Promote the peer and update it's idle state
|
||||||
|
|
Loading…
Reference in New Issue