Skip to content

Commit

Permalink
Hotfix Logging Error in dao_update_notification_by_id (#1547)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanParish authored Nov 21, 2023
1 parent 1565dc0 commit e4e4bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dao/notifications_dao.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e4e4bbe

Please sign in to comment.