From 9ec5d2925682387c580f97e2ddb8d511cdbec991 Mon Sep 17 00:00:00 2001 From: Elizabeth Engelman Date: Tue, 12 Feb 2019 15:00:19 -0600 Subject: [PATCH] Clean up log lines and remove unnecessary fields from builder --- core/blockchain.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/blockchain.go b/core/blockchain.go index 912074ef8..3ef89d857 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -1038,23 +1038,23 @@ func (bc *BlockChain) writeBlockWithState(block *types.Block, receipts []*types. count, ok := bc.stateDiffsProcessed[root.(common.Hash)] //if we haven't processed the statediff for a given state root and it's child, don't dereference it yet if !ok { - log.Info("Current root NOT found root in stateDiffsProcessed", "root", root.(common.Hash).Hex()) + log.Debug("Current root NOT found root in stateDiffsProcessed", "root", root.(common.Hash).Hex()) bc.triegc.Push(root, number) break } if count < 2 { - log.Info("Current root has not yet been processed for it's child", "root", root.(common.Hash).Hex()) + log.Debug("Current root has not yet been processed for it's child", "root", root.(common.Hash).Hex()) bc.triegc.Push(root, number) break } else { - log.Warn("Current root found in stateDiffsProcessed collection with a count of 2, okay to dereference", + log.Debug("Current root found in stateDiffsProcessed collection with a count of 2, okay to dereference", "root", root.(common.Hash).Hex(), "blockNumber", uint64(-number), "size of stateDiffsProcessed", len(bc.stateDiffsProcessed)) delete(bc.stateDiffsProcessed, root.(common.Hash)) } } - log.Info("DEREFERENCING", "root", root.(common.Hash).Hex()) + log.Debug("Dereferencing", "root", root.(common.Hash).Hex()) triedb.Dereference(root.(common.Hash)) } }