Commit 34892b96 by Calen Pennington

Add more information when logging data about differing history and score entries

parent 93b1b698
......@@ -1219,10 +1219,13 @@ def submission_history(request, course_id, student_username, location):
log.warning(
"Mismatch when fetching scores for student "
"history for course %s, user %s, xblock %s. "
"Matching scores by date for display.",
"%d scores were found, and %d history entries were found. "
"Matching scores to history entries by date for display.",
course_id,
student_username,
location
location,
len(scores),
len(history_entries),
)
scores_by_date = {
score.modified: score
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment