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

pull/1106/head
Péter Szilágyi 10 years ago
parent d74ee40c86
commit 3083ec5e32
  1. 2
      eth/downloader/downloader.go

@ -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…
Cancel
Save