From 1aaa2cbfe2f6c557b6d696531465185809990ed6 Mon Sep 17 00:00:00 2001 From: diamondburned Date: Sat, 14 Nov 2020 15:36:18 -0800 Subject: [PATCH] httputil: Removed debug logs --- utils/httputil/client.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/utils/httputil/client.go b/utils/httputil/client.go index a1d2dbb..f7ab85c 100644 --- a/utils/httputil/client.go +++ b/utils/httputil/client.go @@ -6,9 +6,7 @@ import ( "bytes" "context" "io" - "log" "mime/multipart" - "runtime/debug" "github.com/pkg/errors" @@ -58,7 +56,6 @@ func (c *Client) Copy() *Client { // WithContext returns a client copy of the client with the given context. func (c *Client) WithContext(ctx context.Context) *Client { - log.Println("Setting request; stack trace:", string(debug.Stack())) c = c.Copy() c.context = ctx return c