From be6c0166641e4c3d93987f99f7bf7e9583d04c99 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 17 Dec 2020 12:22:02 +0400 Subject: [PATCH] consensus: change log level to error when adding vote --- consensus/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/state.go b/consensus/state.go index 40399370c..6f3ae2a3f 100644 --- a/consensus/state.go +++ b/consensus/state.go @@ -1889,7 +1889,7 @@ func (cs *State) tryAddVote(vote *types.Vote, peerID p2p.ID) (bool, error) { // 2) not a bad peer? this can also err sometimes with "Unexpected step" OR // 3) tmkms use with multiple validators connecting to a single tmkms instance // (https://github.com/tendermint/tendermint/issues/3839). - cs.Logger.Info("Error attempting to add vote", "err", err) + cs.Logger.Error("Error attempting to add vote", "err", err) return added, ErrAddingVote } }