From d9f0a6ba68ca597290c38387c3f0b10e6b97b447 Mon Sep 17 00:00:00 2001 From: Adam Palay Date: Mon, 23 Jun 2014 16:48:37 -0400 Subject: [PATCH] Lower logging level in grading condition from exception to info addresses part of LMS-2907 --- lms/djangoapps/courseware/grades.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/grades.py b/lms/djangoapps/courseware/grades.py index 59558d6801..72bac150f7 100644 --- a/lms/djangoapps/courseware/grades.py +++ b/lms/djangoapps/courseware/grades.py @@ -259,7 +259,7 @@ def _grade(student, request, course, keep_raw_scores): if graded_total.possible > 0: format_scores.append(graded_total) else: - log.exception("Unable to grade a section with a total possible score of zero. " + + log.info("Unable to grade a section with a total possible score of zero. " + str(section_descriptor.location)) totaled_scores[section_format] = format_scores