Skip to content

Commit 1e4150f

Browse files
masihrjan90
authored andcommitted
Use DEBUG level log when F3 is not ready for participation (#12700)
To reduce log verbosity change the log level for message indicating that F3 is not ready for participation yet. Because, the participation logic will reattempt after some backoff and these logs may at times become too verbose. Fixes #12688
1 parent ce4c03d commit 1e4150f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chain/lf3/participation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func (p *Participant) tryParticipate(ctx context.Context, ticket api.F3Participa
193193
log.Debugw("Reattempting F3 participation with the same ticket.", "attempts", p.backoff.Attempt())
194194
continue
195195
case errors.Is(err, api.ErrF3NotReady):
196-
log.Warnw("F3 is not ready. Retrying F3 participation after backoff.", "backoff", p.backoff.Duration(), "err", err)
196+
log.Debugw("F3 is not ready. Retrying F3 participation after backoff.", "backoff", p.backoff.Duration(), "err", err)
197197
p.backOff(ctx)
198198
continue
199199
case err != nil:

0 commit comments

Comments
 (0)