From ae3c97e6260a34ac0722d28c4909300cb664ebeb Mon Sep 17 00:00:00 2001 From: Mackenzie Halliday Date: Wed, 4 Dec 2024 10:50:48 -0800 Subject: [PATCH] Squash #2137 - Correction to logging in new module --- app/celery/send_va_profile_notification_status_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/celery/send_va_profile_notification_status_tasks.py b/app/celery/send_va_profile_notification_status_tasks.py index 7878eaa468..f3f32ac95a 100644 --- a/app/celery/send_va_profile_notification_status_tasks.py +++ b/app/celery/send_va_profile_notification_status_tasks.py @@ -17,13 +17,13 @@ def check_and_queue_va_profile_notification_status_callback(notification: Notifi :param notification: the notification (email or sms) to collect data from """ current_app.logger.debug( - 'Sending email status to VA Profile, checking VA_PROFILE_SMS_STATUS_ENABLE feature flag... | notification %s', + 'Sending notification status to VA Profile, checking VA_PROFILE_SMS_STATUS_ENABLE feature flag... | notification %s', notification.id, ) if is_feature_enabled(FeatureFlag.VA_PROFILE_SMS_STATUS_ENABLED) or notification.notification_type == EMAIL_TYPE: current_app.logger.debug( - 'Sending email status to VA Profile, collecting data for notification %s', notification.id + 'Sending notification status to VA Profile, collecting data for notification %s', notification.id ) notification_data = { 'id': str(notification.id), # this is the notification id