diff --git a/app/celery/process_ses_receipts_tasks.py b/app/celery/process_ses_receipts_tasks.py index 8d4b99de88..87ac65f866 100644 --- a/app/celery/process_ses_receipts_tasks.py +++ b/app/celery/process_ses_receipts_tasks.py @@ -158,6 +158,7 @@ def process_ses_results( # noqa: C901 (too complex 14 > 10) self, response, ): + current_app.logger.debug('Full SES result response: %s', response) try: ses_message = json.loads(response['Message']) notification_type = ses_message.get('eventType') diff --git a/app/celery/scheduled_tasks.py b/app/celery/scheduled_tasks.py index 53c2c99f60..c7a7f3d3ec 100644 --- a/app/celery/scheduled_tasks.py +++ b/app/celery/scheduled_tasks.py @@ -148,6 +148,7 @@ def replay_created_notifications(): ) for n in notifications_to_resend: + current_app.logger.info('Replaying notification: %s', n.id) send_notification_to_queue(notification=n, research_mode=n.service.research_mode)