From d71800efbdc1ee6d519953befffcfbab7db1fc26 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Wed, 12 Nov 2025 11:46:14 +0100 Subject: [PATCH] Do not log sensitive info Signed-off-by: Bryan Frimin --- pkg/server/auth/saml_acs_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/server/auth/saml_acs_handler.go b/pkg/server/auth/saml_acs_handler.go index 6f0e6887d..73518ece5 100644 --- a/pkg/server/auth/saml_acs_handler.go +++ b/pkg/server/auth/saml_acs_handler.go @@ -64,7 +64,7 @@ func SAMLACSHandler(samlSvc *authsvc.SAMLService, authSvc *authsvc.Service, auth samlConfigID := r.URL.Query().Get("c") if relayState != "" { - logger.InfoCtx(ctx, "processing SP-initiated SAML login", log.String("relay_state", relayState)) + logger.InfoCtx(ctx, "processing SP-initiated SAML login") } else { logger.InfoCtx(ctx, "processing IDP-initiated SAML login", log.String("config_id", samlConfigID)) }