Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 381fcf1

Browse files
committed
Log
1 parent 9a5426e commit 381fcf1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/oidcrp/rp_handler.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,7 @@ def get_access_and_id_token(self, authorization_response=None,
731731
access_token = authorization_response["access_token"]
732732
if behaviour_args and behaviour_args.get("collect_id_token", False):
733733
if "id_token" not in _resp_type:
734+
logger.debug("Collect ID Token")
734735
# get the access token
735736
token_resp = self.get_access_token(state, client=client)
736737
if is_error_message(token_resp):
@@ -773,6 +774,9 @@ def finalize(self, issuer, response, behaviour_args: Optional[dict] = None):
773774

774775
client = self.issuer2rp[issuer]
775776

777+
if behaviour_args:
778+
logger.debug(f"Behaviour args: {behaviour_args}")
779+
776780
authorization_response = self.finalize_auth(client, issuer, response)
777781
if is_error_message(authorization_response):
778782
return {

0 commit comments

Comments
 (0)