From 325b788c2cf43b6b368854b6a79ff4fa29e0d4aa Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Sat, 11 Nov 2023 23:12:47 +0000 Subject: [PATCH] chore: remove debug statement --- internal/authenticator/auto_authenticator.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/authenticator/auto_authenticator.go b/internal/authenticator/auto_authenticator.go index 7d0d25b..64febb4 100644 --- a/internal/authenticator/auto_authenticator.go +++ b/internal/authenticator/auto_authenticator.go @@ -25,8 +25,6 @@ type AutoAuthenticator struct { // Auth check user authentication by checking the user's token // isSuperuser is a flag that authenticator set it true when credentials is related to a superuser. func (a AutoAuthenticator) Auth(tokenString string) error { - fmt.Println("I am here") - if _, err := a.Validator.Validate(context.Background(), http.Header{ validator.ServiceNameHeader: []string{"soteria"}, "user-agent": []string{},