diff --git a/consensus/reactor.go b/consensus/reactor.go index fe254883b..a337472b8 100644 --- a/consensus/reactor.go +++ b/consensus/reactor.go @@ -1080,7 +1080,11 @@ func (ps *PeerState) SetHasProposalBlockPart(height int64, round int32, index in func (ps *PeerState) PickSendVote(votes types.VoteSetReader) bool { if vote, ok := ps.PickVoteToSend(votes); ok { msg := &VoteMessage{vote} - ps.logger.Debug("Sending vote message", "ps", ps, "vote", vote) + // Remove the logging `PeerState` + // See: https://github.com/line/ostracon/issues/457 + // See: https://github.com/tendermint/tendermint/discussions/9353 + // ps.logger.Debug("Sending vote message", "ps", ps, "vote", vote) + ps.logger.Debug("Sending vote message", "vote", vote) if ps.peer.Send(VoteChannel, MustEncode(msg)) { ps.SetHasVote(vote) return true