Skip to content
Snippets Groups Projects
Commit 3291f780 authored by Mart van Santen's avatar Mart van Santen
Browse files

Add debugging

parent 77b6364c
No related branches found
No related tags found
1 merge request!55Resolve "Merge dashboard and dashboard-backend repos"
......@@ -238,11 +238,12 @@ def consent():
app_id = consent_request.client.client_id
# False positive: pylint: disable=no-member
kratos_id = consent_request.subject
except Exception as e:
except Exception as error:
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}")
current_app.logger.error(f"Subject: {consent_request.client.client_id}")
abort(501, description="Internal error occured")
# Get the related user object
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment