From b845fae0bcc36ae7c679d54e0f33f63a95d119e5 Mon Sep 17 00:00:00 2001 From: Zainab Amir <40633976+zainab-amir@users.noreply.github.com> Date: Mon, 11 Nov 2019 15:03:02 +0500 Subject: [PATCH] Remove logs (#22293) Revert logs added to investigate audit cert cutoff date PROD-978 --- lms/djangoapps/certificates/queue.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lms/djangoapps/certificates/queue.py b/lms/djangoapps/certificates/queue.py index 59b36a5081..f692c429f5 100644 --- a/lms/djangoapps/certificates/queue.py +++ b/lms/djangoapps/certificates/queue.py @@ -375,7 +375,6 @@ class XQueueCertInterface(object): # already marked as ineligible -- we don't want to mark # existing audit certs as ineligible. cutoff = settings.AUDIT_CERT_CUTOFF_DATE - LOGGER.info(u"Audit certificates cutoff date {}".format(cutoff)) if (cutoff and cert.created_date >= cutoff) and not is_eligible_for_certificate: cert.status = status.audit_passing if passing else status.audit_notpassing cert.save()