Skip to content
Snippets Groups Projects
Unverified Commit d1bd39c7 authored by Jeff LaJoie's avatar Jeff LaJoie Committed by GitHub
Browse files

Merge pull request #23987 from edx/jlajoie/course-update-extra-logging

Adds more logging to course updates task
parents ae657f09 75f60af4
No related branches found
No related tags found
No related merge requests found
......@@ -469,6 +469,11 @@ class CourseNextSectionUpdate(PrefixedDebugLoggerMixin, RecipientResolver):
enrollment = schedule.enrollment
course = schedule.enrollment.course
user = enrollment.user
LOG.info(u'Received a schedule for user {} in course {} for date {}'.format(
user.username,
self.course_id,
target_date,
))
try:
week_highlights, week_num = get_next_section_highlights(user, course.id, target_date)
......
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