From 02537f79eb8ffece134bf405d0631e5016795ebd Mon Sep 17 00:00:00 2001 From: Hugo Gonzalez Date: Tue, 30 Jan 2024 15:59:39 +0100 Subject: [PATCH] remove print --- internal/grpc/interceptors/auth/auth.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/grpc/interceptors/auth/auth.go b/internal/grpc/interceptors/auth/auth.go index e2ea5c835b..ebf28fbc98 100644 --- a/internal/grpc/interceptors/auth/auth.go +++ b/internal/grpc/interceptors/auth/auth.go @@ -200,7 +200,6 @@ func (ss *wrappedServerStream) Context() context.Context { } func dismantleToken(ctx context.Context, tkn string, req interface{}, mgr token.Manager, gatewayAddr string, unprotected bool) (*userpb.User, map[string]*authpb.Scope, error) { - fmt.Println(tkn) u, tokenScope, err := mgr.DismantleToken(ctx, tkn) if err != nil { return nil, nil, err