Skip to content

Commit

Permalink
polygon/heimdall: lower verbosity for fetch err that gets retried
Browse files Browse the repository at this point in the history
  • Loading branch information
taratorio committed Jan 18, 2025
1 parent 8dec5ac commit 78945c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polygon/heimdall/client_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ func FetchWithRetryEx[T any](
return nil, err
}

client.logger.Warn(heimdallLogPrefix("an error while fetching"), "path", url.Path, "queryParams", url.RawQuery, "attempt", attempt, "err", err)
client.logger.Debug(heimdallLogPrefix("an error while fetching"), "path", url.Path, "queryParams", url.RawQuery, "attempt", attempt, "err", err)

select {
case <-ctx.Done():
Expand Down

0 comments on commit 78945c3

Please sign in to comment.