From 60c34f9c534aeb112077ef080628cdf672d5d9be Mon Sep 17 00:00:00 2001 From: Pavel Zavora Date: Mon, 7 Dec 2020 18:28:40 +0100 Subject: [PATCH] chore(server): remove useless logging --- influx/authorization.go | 1 - 1 file changed, 1 deletion(-) diff --git a/influx/authorization.go b/influx/authorization.go index e2f9ece0b..8a2cc3ea4 100644 --- a/influx/authorization.go +++ b/influx/authorization.go @@ -67,7 +67,6 @@ type TokenAuth struct { // Set adds the token authentication to the request func (a *TokenAuth) Set(r *http.Request) error { - fmt.Println("setting up token " + a.Token) r.Header.Set("Authorization", "Token "+a.Token) return nil }