From b42089b0dd59b0bf9d8b696cc5084f8c82e131b4 Mon Sep 17 00:00:00 2001 From: Ayub khan Date: Mon, 6 Mar 2017 20:50:05 +0500 Subject: [PATCH] Revert "added log for refund cutoff date" --- common/djangoapps/student/models.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index b2dbad2de4..f984ce10c7 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -1571,11 +1571,6 @@ class CourseEnrollment(models.Model): # If it is after the refundable cutoff date they should not be refunded. refund_cutoff_date = self.refund_cutoff_date() if refund_cutoff_date and datetime.now(UTC) > refund_cutoff_date: - log.info( - u"user [%s] cannot be refunded because his/her cutoff date [%s] has passed", - self.username, - refund_cutoff_date - ) return False course_mode = CourseMode.mode_for_course(self.course_id, 'verified')