From 4793a427677179b4763f7240a19ea90eed8dfb1d Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 29 Sep 2016 16:15:04 -0400 Subject: [PATCH] Silence more grades-related logging --- lms/djangoapps/grades/new/subsection_grade.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/grades/new/subsection_grade.py b/lms/djangoapps/grades/new/subsection_grade.py index 8f722523ec..1d196c4333 100644 --- a/lms/djangoapps/grades/new/subsection_grade.py +++ b/lms/djangoapps/grades/new/subsection_grade.py @@ -112,14 +112,14 @@ class SubsectionGrade(object): """ Saves the subsection grade in a persisted model. """ - self._log_event(log.info, u"create_model", student) + self._log_event(log.debug, u"create_model", student) return PersistentSubsectionGrade.create_grade(**self._persisted_model_params(student)) def update_or_create_model(self, student): """ Saves or updates the subsection grade in a persisted model. """ - self._log_event(log.info, u"update_or_create_model", student) + self._log_event(log.debug, u"update_or_create_model", student) return PersistentSubsectionGrade.update_or_create_grade(**self._persisted_model_params(student)) def _compute_block_score(