Skip to content
Snippets Groups Projects
Unverified Commit 53e1391f authored by Zachary Hancock's avatar Zachary Hancock Committed by GitHub
Browse files

fix: log user_id on lti launch failure (#374)

parent b9515a27
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ Please See the `releases tab <https://github.com/openedx/xblock-lti-consumer/rel
Unreleased
~~~~~~~~~~
* Improved logging for Proctoring LTI 1.3 launch failure.
9.5.0 - 2023-05-08
------------------
......
......@@ -777,7 +777,7 @@ def start_proctoring_assessment_endpoint(request):
log.warning(
f'There was a cache miss trying to fetch the launch data during an LTI 1.3 proctoring StartAssessment '
f'launch when using the cache key {launch_data_key}. The LtiConfiguration config_id is '
f'{lti_config.config_id}.'
f'{lti_config.config_id} the user_id is {request.user.id}.'
)
return render(request, 'html/lti_proctoring_start_error.html', status=HTTP_400_BAD_REQUEST)
......
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