more exc_info

This commit is contained in:
Kenneth Kehl
2024-08-15 11:07:36 -07:00
parent 6aed01ea20
commit c0ab7c8a68
12 changed files with 30 additions and 24 deletions

View File

@@ -194,7 +194,9 @@ def delete_inbound_sms():
)
)
except SQLAlchemyError:
current_app.logger.exception("Failed to delete inbound sms notifications")
current_app.logger.exception(
"Failed to delete inbound sms notifications", exc_info=True
)
raise