From e4e4bbe146d97d70366aed7238135f24fd6e79b0 Mon Sep 17 00:00:00 2001 From: Evan Parish <104009494+EvanParish@users.noreply.github.com> Date: Tue, 21 Nov 2023 11:12:49 -0600 Subject: [PATCH] Hotfix Logging Error in dao_update_notification_by_id (#1547) --- app/dao/notifications_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index cf76fd1229..72d3d5bcce 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -310,7 +310,7 @@ def dao_update_notification_by_id(notification_id: str, **kwargs): return None except ArgumentError as e: current_app.logger.warning( - 'Cannot update notification %s - exception: %s', notification_id, status, e + 'Cannot update notification %s - exception: %s', notification_id, e ) return None except Exception as e: