From 10000fc205186d163568cecd05dc516c391f0949 Mon Sep 17 00:00:00 2001 From: tianj7 Date: Tue, 9 Apr 2024 13:41:33 -0500 Subject: [PATCH] add logging --- fence/oidc/grants/oidc_code_grant.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fence/oidc/grants/oidc_code_grant.py b/fence/oidc/grants/oidc_code_grant.py index c27ab6953..082838572 100644 --- a/fence/oidc/grants/oidc_code_grant.py +++ b/fence/oidc/grants/oidc_code_grant.py @@ -206,6 +206,7 @@ def validate_request_prompt(self, end_user, redirect_uri): def validate_token_request(self): # authenticate the client if client authentication is included + logger.debug("Authenticating token client..") client = self.authenticate_token_endpoint_client() logger.debug("Validate token request of %r", client)