From 8f046a226d247e631b14fa5e93e207b3a79c3b99 Mon Sep 17 00:00:00 2001 From: Idhibhat Pankam Date: Thu, 15 Aug 2024 18:06:37 +0700 Subject: [PATCH] log --- backend/internal/auth/auth.handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/internal/auth/auth.handler.go b/backend/internal/auth/auth.handler.go index 04ba687..a800627 100644 --- a/backend/internal/auth/auth.handler.go +++ b/backend/internal/auth/auth.handler.go @@ -96,6 +96,7 @@ func (h *handlerImpl) ValidateST(c context.Ctx) { return } + h.log.Info("ValidateST: ", zap.String("service", service), zap.String("serviceTicket.ServiceUrl", serviceTicket.ServiceUrl)) if service != serviceTicket.ServiceUrl { h.log.Error("ValidateST: 'service' query parameter does not match the service ticket") c.UnauthorizedError("'service' query parameter does not match the service ticket")