Silence more grades-related logging

This commit is contained in:
Eric Fischer
2016-09-29 16:15:04 -04:00
committed by Nimisha Asthagiri
parent 969c75a7d1
commit 4793a42767

View File

@@ -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(