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:
parent
9841403c58
commit
4151416b16
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue