chore(server): remove useless logging

pull/5631/head
Pavel Zavora 2020-12-07 18:28:40 +01:00
parent fb146bf892
commit 60c34f9c53
1 changed files with 0 additions and 1 deletions

View File

@ -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
}