From ffe5606f0b946ea8e167bc724da1b790f28a8501 Mon Sep 17 00:00:00 2001 From: pmahindrakar-oss <77798312+pmahindrakar-oss@users.noreply.github.com> Date: Mon, 3 May 2021 21:32:45 +0530 Subject: [PATCH] Logging the request URI from IDP (#188) Signed-off-by: Prafulla Mahindrakar --- flyteadmin/auth/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flyteadmin/auth/handlers.go b/flyteadmin/auth/handlers.go index 4bd2d33c42..43bf3cc01f 100644 --- a/flyteadmin/auth/handlers.go +++ b/flyteadmin/auth/handlers.go @@ -133,7 +133,7 @@ func GetLoginHandler(ctx context.Context, authCtx interfaces.AuthenticationConte // the user authentication flow. func GetCallbackHandler(ctx context.Context, authCtx interfaces.AuthenticationContext) http.HandlerFunc { return func(writer http.ResponseWriter, request *http.Request) { - logger.Debugf(ctx, "Running callback handler...") + logger.Debugf(ctx, "Running callback handler... for RequestURI %v", request.RequestURI) authorizationCode := request.FormValue(AuthorizationResponseCodeType) err := VerifyCsrfCookie(ctx, request)