EDUCATOR-3668 remove temporary logs
This commit is contained in:
@@ -101,14 +101,6 @@ class CourseGradeFactory(object):
|
||||
course_data = CourseData(
|
||||
user=None, course=course, collected_block_structure=collected_block_structure, course_key=course_key,
|
||||
)
|
||||
# adding temporary log to investigate EDUCATOR-3668
|
||||
log.info(
|
||||
"EDUCATOR-3668-lms.grades.CourseGradeFactory.iter: using course_version: {course_version} "
|
||||
"and course_key: {course_key}".format(
|
||||
course_version=course_data.version,
|
||||
course_key=course_data.course_key
|
||||
)
|
||||
)
|
||||
stats_tags = [u'action:{}'.format(course_data.course_key)]
|
||||
for user in users:
|
||||
with dog_stats_api.timer('lms.grades.CourseGradeFactory.iter', tags=stats_tags):
|
||||
|
||||
@@ -63,10 +63,6 @@ def compute_all_grades_for_course(**kwargs):
|
||||
if are_grades_frozen(course_key):
|
||||
log.info("Attempted compute_all_grades_for_course for course '%s', but grades are frozen.", course_key)
|
||||
return
|
||||
# adding temporary log to investigate EDUCATOR-3668
|
||||
log.info("EDUCATOR-3668-Computing grades for all students in course: {course_key}".format(
|
||||
course_key=course_key
|
||||
))
|
||||
for course_key_string, offset, batch_size in _course_task_args(course_key=course_key, **kwargs):
|
||||
kwargs.update({
|
||||
'course_key': course_key_string,
|
||||
|
||||
Reference in New Issue
Block a user