Commit 801ee67e by Adam Palay

add more logging to grading

parent 38b61fd8
...@@ -611,17 +611,17 @@ def upload_grades_csv(_xmodule_instance_args, _entry_id, course_id, _task_input, ...@@ -611,17 +611,17 @@ def upload_grades_csv(_xmodule_instance_args, _entry_id, course_id, _task_input,
task_progress.update_task_state(extra_meta=current_step) task_progress.update_task_state(extra_meta=current_step)
task_progress.attempted += 1 task_progress.attempted += 1
# Now add a log entry after certain intervals to get a hint that task is in progress # Now add a log entry after each student is graded to get a sense
# of the task's progress
student_counter += 1 student_counter += 1
if student_counter % 1000 == 0: TASK_LOG.info(
TASK_LOG.info( u'%s, Task type: %s, Current step: %s, Grade calculation in-progress for students: %s/%s',
u'%s, Task type: %s, Current step: %s, Grade calculation in-progress for students: %s/%s', task_info_string,
task_info_string, action_name,
action_name, current_step,
current_step, student_counter,
student_counter, total_enrolled_students
total_enrolled_students )
)
if gradeset: if gradeset:
# We were able to successfully grade this student for this course. # We were able to successfully grade this student for this course.
......
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