From 9da9968028fe9ac53d1827c930d410f6486093d7 Mon Sep 17 00:00:00 2001 From: Leo Hemsted Date: Fri, 22 Mar 2019 14:06:45 +0000 Subject: [PATCH] downgrade error to info --- app/celery/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/celery/tasks.py b/app/celery/tasks.py index 490aa3d40..2928a29f3 100644 --- a/app/celery/tasks.py +++ b/app/celery/tasks.py @@ -484,7 +484,7 @@ def update_letter_notification(filename, temporary_failures, update): msg = "Update letter notification file {filename} failed: notification either not found " \ "or already updated from delivered. Status {status} for notification reference {reference}".format( filename=filename, status=status, reference=update.reference) - current_app.logger.error(msg) + current_app.logger.info(msg) def check_billable_units(notification_update):