From 4151416b16a7b76e54eeec5ae4da7a99f91ad2b9 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 4 Oct 2013 13:41:24 -0500 Subject: [PATCH] Change processing block log message to trace. When running debug level logging, the only thing that really matters is whether the block was accepted or not. --- process.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.go b/process.go index 60894d685..c3ca793d8 100644 --- a/process.go +++ b/process.go @@ -85,7 +85,7 @@ func (b *BlockChain) ProcessBlock(block *btcutil.Block) error { if err != nil { return err } - log.Debugf("Processing block %v", blockHash) + log.Tracef("Processing block %v", blockHash) // The block must not already exist in the main chain or side chains. if b.blockExists(blockHash) {