eth/downloader: silence "Added N blocks from..." if N == 0

This commit is contained in:
Péter Szilágyi 2015-05-26 16:10:28 +03:00
parent d74ee40c86
commit 3083ec5e32
1 changed files with 1 additions and 1 deletions

View File

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