Add debugging

This commit is contained in:
Mart van Santen 2022-04-01 15:37:56 +08:00
parent a4981c8c52
commit 047b34bfc7

View file

@ -234,9 +234,16 @@ def consent():
# Get information about this consent request: # Get information about this consent request:
# False positive: pylint: disable=no-member # False positive: pylint: disable=no-member
app_id = consent_request.client.client_id try:
# False positive: pylint: disable=no-member app_id = consent_request.client.client_id
kratos_id = consent_request.subject # False positive: pylint: disable=no-member
kratos_id = consent_request.subject
except Exception as e:
current_app.logger.error(f"Error: Unable to extract information from consent request")
current_app.logger.error(f"Error: {error}")
current_app.logger.error(f"Client: {consent_request.client}")
current_app.logger.error(f"Subject: {consent_request.subject}")
abort(501, description="Internal error occured"
# Get the related user object # Get the related user object
user = KratosUser(KRATOS_ADMIN, kratos_id) user = KratosUser(KRATOS_ADMIN, kratos_id)