From 45e18a183227bd9285529f59ffb4db8208c5d8bd Mon Sep 17 00:00:00 2001 From: Eric Mann Date: Tue, 24 Oct 2017 14:13:35 -0700 Subject: [PATCH] Change log level to Info when proposal block hashing fails due to partially complete block --- consensus/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/state.go b/consensus/state.go index f0fbad81..f221960e 100644 --- a/consensus/state.go +++ b/consensus/state.go @@ -1130,7 +1130,7 @@ func (cs *ConsensusState) tryFinalizeCommit(height int) { if !cs.ProposalBlock.HashesTo(blockID.Hash) { // TODO: this happens every time if we're not a validator (ugly logs) // TODO: ^^ wait, why does it matter that we're a validator? - cs.Logger.Error("Attempt to finalize failed. We don't have the commit block.", "height", height, "proposal-block", cs.ProposalBlock.Hash(), "commit-block", blockID.Hash) + cs.Logger.Info("Attempt to finalize failed. We don't have the commit block.", "height", height, "proposal-block", cs.ProposalBlock.Hash(), "commit-block", blockID.Hash) return }