Skip to content

Commit

Permalink
polygon/sync: add missed log prefix in prev commit (#13644)
Browse files Browse the repository at this point in the history
forgot to add log prefix in prev PR
#13640
  • Loading branch information
taratorio authored Jan 31, 2025
1 parent 76904e7 commit 9caab25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polygon/sync/execution_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func (e *executionClient) retryBusy(ctx context.Context, label string, f func()

if errors.Is(err, ErrExecutionClientBusy) {
if attempt%logEveryXAttempt == 1 {
e.logger.Debug("execution client busy - retrying", "in", backOff, "label", label, "attempt", attempt)
e.logger.Debug(syncLogPrefix("execution client busy - retrying"), "in", backOff, "label", label, "attempt", attempt)
}
attempt++
return err
Expand Down

0 comments on commit 9caab25

Please sign in to comment.