From a57dce31366fdcd5245e3bda762958b49cdec3b1 Mon Sep 17 00:00:00 2001 From: "Masih H. Derkani" Date: Fri, 12 Jul 2024 19:07:39 +0200 Subject: [PATCH] Reduce log level in F3 message sending to Debug (#12224) Reduce the log level for `miner with id...` to DEBUG, since in normal operation of F3 at least 5 messages are sent per epoch. In an event of rebroadcast the number of messages broadcasted could surpass 10. Hence, the `DEBUG` log level. --- chain/lf3/f3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chain/lf3/f3.go b/chain/lf3/f3.go index c02a556890c..59fa803fa39 100644 --- a/chain/lf3/f3.go +++ b/chain/lf3/f3.go @@ -112,7 +112,7 @@ func (fff *F3) runSigningLoop(ctx context.Context) { if err != nil { return xerrors.Errorf("signing message: %+v", err) } - log.Infof("miner with id %d is sending message in F3", minerID) + log.Debugf("miner with id %d is sending message in F3", minerID) fff.inner.Broadcast(ctx, signatureBuilder, payloadSig, vrfSig) return nil }