Skip to content

Commit fe0039c

Browse files
committed
removed log
1 parent f3a6a4d commit fe0039c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

client.go

-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
"encoding/json"
77
"fmt"
88
"io"
9-
"log"
109
"mime/multipart"
1110
"net/http"
1211

@@ -72,7 +71,6 @@ func (c *client) Do(ctx context.Context, request *Request, response interface{})
7271
if client == nil {
7372
client = http.DefaultClient
7473
}
75-
log.Println("The client is", client)
7674
res, err := ctxhttp.Do(ctx, client, req)
7775
if err != nil {
7876
return err
@@ -94,7 +92,6 @@ func (c *client) Do(ctx context.Context, request *Request, response interface{})
9492

9593
// WithClient specifies the http.Client that requests will use.
9694
func WithClient(ctx context.Context, client *http.Client) context.Context {
97-
log.Printf("%+v", ctx)
9895
c, err := fromContext(ctx)
9996
if err != nil {
10097
// can't set it, fail silently

0 commit comments

Comments
 (0)