From 68cc3b7c81f5d490acfd909c81290517818a1c53 Mon Sep 17 00:00:00 2001 From: simon987 Date: Thu, 25 Jun 2020 21:54:57 -0400 Subject: [PATCH] Remove println --- client/client.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/client.go b/client/client.go index bcb5182..4f40ee5 100644 --- a/client/client.go +++ b/client/client.go @@ -4,7 +4,6 @@ import ( "bytes" "encoding/base64" "encoding/json" - "fmt" "github.com/simon987/task_tracker/api" "github.com/simon987/task_tracker/storage" "io/ioutil" @@ -75,7 +74,6 @@ func unmarshalResponse(r *http.Response, result interface{}) error { if err != nil { return err } - fmt.Println(string(data)) err = json.Unmarshal(data, result) if err != nil { return err