mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-07 11:55:13 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue