Skip to content

Commit

Permalink
fix: Cleanup rest client logging
Browse files Browse the repository at this point in the history
  • Loading branch information
NoUseFreak committed Dec 19, 2022
1 parent 4c7779f commit b3f4657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (c *LedgerClient) PostNewVersion(app, location, env, version string) error
retryClient := retryablehttp.NewClient()
retryClient.RetryMax = 10
retryClient.Backoff = retryablehttp.DefaultBackoff
retryClient.Logger = logrus.StandardLogger()
retryClient.Logger = nil
httpClient := retryClient.StandardClient()
httpClient.Timeout = time.Second * 10
response, err := httpClient.Do(request)
Expand Down

0 comments on commit b3f4657

Please sign in to comment.