From 33a23693c8d171ab12f82b2ab331710d0e233c56 Mon Sep 17 00:00:00 2001 From: pmahindrakar-oss Date: Thu, 10 Aug 2023 10:43:58 -0700 Subject: [PATCH] removed log line Signed-off-by: pmahindrakar-oss --- auth/handlers.go | 1 - 1 file changed, 1 deletion(-) diff --git a/auth/handlers.go b/auth/handlers.go index e9e458da0..9604d90ec 100644 --- a/auth/handlers.go +++ b/auth/handlers.go @@ -211,7 +211,6 @@ func GetCallbackHandler(ctx context.Context, authCtx interfaces.AuthenticationCo logger.Info(ctx, "Successfully called the preRedirect hook") } redirectURL := getAuthFlowEndRedirect(ctx, authCtx, request) - logger.Infof(ctx, "Going to perform the redirect with redirectURl %v", redirectURL) http.Redirect(writer, request, redirectURL, http.StatusTemporaryRedirect) } }