From 9562918f2a6cb5456aca6b6150ab927d3ef2c177 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 30 Jun 2022 17:49:56 +0200 Subject: [PATCH] avoid exception log --- .../management/commands/teleforma-publish-notify-conferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index 8140c7b7..b2d37eee 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -87,7 +87,7 @@ class Command(BaseCommand): notify(student.user, message, url) logger.logger.info("Student notified: " + student.user.username) except: - logger.logger.info("Student NOT notified: " + str(student.id)) + #logger.logger.info("Student NOT notified: " + str(student.id)) continue conference.notified = True -- 2.39.5