3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 23:32:16 +00:00

Quieten a noisy debug line when downloading the block chain.

This commit is contained in:
Mike Hearn 2013-03-04 17:18:54 +01:00 committed by Mike Hearn
parent 68907880cb
commit b4c835c0cf

View File

@ -1017,7 +1017,7 @@ public class Peer {
log.info("blockChainDownload({}): ignoring duplicated request", toHash.toString());
return;
}
log.info("{}: blockChainDownload({}) current head = {}", new Object[] { toString(),
log.debug("{}: blockChainDownload({}) current head = {}", new Object[] { toString(),
toHash.toString(), chainHead.getHeader().getHashAsString() });
StoredBlock cursor = chainHead;
for (int i = 100; cursor != null && i > 0; i--) {