From 23ff5de03ade19ec11d91607cecb7b2ede09b28e Mon Sep 17 00:00:00 2001 From: hanabi1224 Date: Mon, 28 Oct 2024 22:17:41 +0800 Subject: [PATCH] fix(log): demote log level to DEBUG on skipping forwards based on cert (#724) --- host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host.go b/host.go index ecb08c27..3571f545 100644 --- a/host.go +++ b/host.go @@ -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)