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.
This commit is contained in:
Dave Collins 2013-10-04 13:41:24 -05:00
parent 9841403c58
commit 4151416b16

View file

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