From 6a32e48ed42c60fe1e19460c2b12d4a5cd434e1e Mon Sep 17 00:00:00 2001 From: Mackenzie Halliday Date: Wed, 4 Dec 2024 11:42:39 -0800 Subject: [PATCH] Squash #2137 - Notification object log temporary --- app/celery/send_va_profile_notification_status_tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/celery/send_va_profile_notification_status_tasks.py b/app/celery/send_va_profile_notification_status_tasks.py index 200e54df13..83f7b8f799 100644 --- a/app/celery/send_va_profile_notification_status_tasks.py +++ b/app/celery/send_va_profile_notification_status_tasks.py @@ -27,6 +27,8 @@ def check_and_queue_va_profile_notification_status_callback(notification: Notifi current_app.logger.debug( 'Sending notification status to VA Profile, collecting data for notification %s', notification.id ) + + current_app.logger.debug('This is what the notification object looks like: %s', notification) notification_data = { 'id': str(notification.id), # this is the notification id 'reference': notification.client_reference,