Skip to content

Commit

Permalink
fix(log): demote log level to DEBUG on skipping forwards based on cert (
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 authored Oct 28, 2024
1 parent 322dc35 commit 23ff5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ func (h *gpbftRunner) receiveCertificate(c *certs.FinalityCertificate) error {
return nil
}

log.Infow("skipping forwards based on cert", "from", currentInstance, "to", nextInstance)
log.Debugw("skipping forwards based on cert", "from", currentInstance, "to", nextInstance)

nextInstanceStart := h.computeNextInstanceStart(c)
return h.startInstanceAt(nextInstance, nextInstanceStart)
Expand Down

0 comments on commit 23ff5de

Please sign in to comment.