From f365b30e02c14adf93b597f9a9a159698cce654f Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Fri, 23 Apr 2021 14:00:08 -0600 Subject: [PATCH] authorize: remove log (#2122) --- authorize/evaluator/evaluator.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/authorize/evaluator/evaluator.go b/authorize/evaluator/evaluator.go index 89d157985..03ce65243 100644 --- a/authorize/evaluator/evaluator.go +++ b/authorize/evaluator/evaluator.go @@ -97,11 +97,6 @@ func (e *Evaluator) Evaluate(ctx context.Context, req *Request) (*Result, error) ) allow := getAllowVar(res[0].Bindings.WithoutWildcards()) - log.Info(ctx). - Bool("ALLOW", allow). - Interface("SESSION", req.Session). - Interface("RESULT", res[0].Bindings.WithoutWildcards()). - Send() // evaluate any custom policies if allow { for _, src := range req.CustomPolicies {