Skip to content

Commit

Permalink
Reduce log level in F3 message sending to Debug (#12224)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
masih committed Jul 12, 2024
1 parent ca1d963 commit a57dce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/lf3/f3.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit a57dce3

Please sign in to comment.