From 92c954c3934626424b51c145d69bf529b6bad11f Mon Sep 17 00:00:00 2001 From: Phenix Rizen Date: Fri, 2 Aug 2019 14:57:44 -0700 Subject: [PATCH] removed logging bug from from retry --- client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client.go b/client.go index a8c3f4e..2657997 100644 --- a/client.go +++ b/client.go @@ -27,6 +27,7 @@ type apiClient struct { func newAPIClient(conf *Config) *apiClient { client := &apiClient{} httpClient := retryablehttp.NewClient() + httpClient.Logger = nil client.httpClient = httpClient var zeroDuration time.Duration if conf.RetryWaitMin == zeroDuration {