Browse Source

consensus: change log level to error when adding vote

pull/5810/head
Anton Kaliaev 4 years ago
parent
commit
be6c016664
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      consensus/state.go

+ 1
- 1
consensus/state.go View File

@ -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
}
}


Loading…
Cancel
Save