Skip to content

Commit

Permalink
comment out error statement
Browse files Browse the repository at this point in the history
  • Loading branch information
melekes committed Mar 7, 2019
1 parent 77379e0 commit 4ad173c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions consensus/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -716,10 +716,10 @@ func (cs *ConsensusState) handleMsg(mi msgInfo) {
default:
cs.Logger.Error("Unknown msg type", reflect.TypeOf(msg))
}
if err != nil {
cs.Logger.Error("Error with msg", "height", cs.Height, "round", cs.Round,
"type", reflect.TypeOf(msg), "peer", peerID, "err", err, "msg", msg)
}
// if err != nil {
// cs.Logger.Error("Error with msg", "height", cs.Height, "round", cs.Round,
// "type", reflect.TypeOf(msg), "peer", peerID, "err", err, "msg", msg)
// }
}

func (cs *ConsensusState) handleTimeout(ti timeoutInfo, rs cstypes.RoundState) {
Expand Down

0 comments on commit 4ad173c

Please sign in to comment.