Skip to content

Commit

Permalink
removed log
Browse files Browse the repository at this point in the history
  • Loading branch information
matryer committed Dec 7, 2017
1 parent f3a6a4d commit fe0039c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"encoding/json"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"

Expand Down Expand Up @@ -72,7 +71,6 @@ func (c *client) Do(ctx context.Context, request *Request, response interface{})
if client == nil {
client = http.DefaultClient
}
log.Println("The client is", client)
res, err := ctxhttp.Do(ctx, client, req)
if err != nil {
return err
Expand All @@ -94,7 +92,6 @@ func (c *client) Do(ctx context.Context, request *Request, response interface{})

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

0 comments on commit fe0039c

Please sign in to comment.