Add debugging
This commit is contained in:
parent
a4981c8c52
commit
047b34bfc7
1 changed files with 10 additions and 3 deletions
|
@ -234,9 +234,16 @@ def consent():
|
|||
|
||||
# Get information about this consent request:
|
||||
# False positive: pylint: disable=no-member
|
||||
app_id = consent_request.client.client_id
|
||||
# False positive: pylint: disable=no-member
|
||||
kratos_id = consent_request.subject
|
||||
try:
|
||||
app_id = consent_request.client.client_id
|
||||
# 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
|
||||
user = KratosUser(KRATOS_ADMIN, kratos_id)
|
||||
|
|
Loading…
Reference in a new issue