From b5d4acb75853a680d2d1052088b9ad28b8a80e62 Mon Sep 17 00:00:00 2001 From: Imdad Ahad Date: Thu, 27 Apr 2017 16:58:00 +0100 Subject: [PATCH] Make message more accurate --- app/celery/provider_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/celery/provider_tasks.py b/app/celery/provider_tasks.py index b0df268b3..e00591f09 100644 --- a/app/celery/provider_tasks.py +++ b/app/celery/provider_tasks.py @@ -44,7 +44,7 @@ def deliver_sms(self, notification_id): except Exception as e: try: current_app.logger.exception( - "RETRY: SMS notification {} failed".format(notification_id) + "SMS notification delivery for id: {} failed".format(notification_id) ) self.retry(queue="retry", countdown=retry_iteration_to_delay(self.request.retries)) except self.MaxRetriesExceededError: