From fbd7b5c8edfe26b02e8bfd2f864e0d2a47e8ded4 Mon Sep 17 00:00:00 2001 From: bramjanssen Date: Thu, 5 Feb 2026 08:41:29 +0100 Subject: [PATCH] fix: added debug logging for auth --- app/auth.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/auth.py b/app/auth.py index 82d2014..bfda12a 100644 --- a/app/auth.py +++ b/app/auth.py @@ -31,6 +31,8 @@ def _decode_token(token: str): try: + logger.debug(f"Decoding token for user authentication: {token} with " + f"issuer {KEYCLOAK_BASE_URL}") signing_key = jwks_client.get_signing_key_from_jwt(token).key payload = jwt.decode( token,