From 54ce019df6d2fcb58e558ddb8c7bb86e08047636 Mon Sep 17 00:00:00 2001 From: jimmoffet Date: Thu, 6 Oct 2022 16:57:40 -0700 Subject: [PATCH] tidy up subscription confirmation to SNS notifs --- app/notifications/receive_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/notifications/receive_notifications.py b/app/notifications/receive_notifications.py index 66f1504ca..c60cc9ea8 100644 --- a/app/notifications/receive_notifications.py +++ b/app/notifications/receive_notifications.py @@ -44,7 +44,7 @@ def receive_sns_sms(): raise InvalidRequest(f"SMS-SNS callback failed with error: {e}", 400) # TODO remove after smoke testing implemented on prod - current_app.logger.info(f'data is: {data}') + current_app.logger.info(f'SNS message_type is: {message_type}, data is: {data}') # TODO wrap this up if message_type != 'SubscriptionConfirmation':