Skip to content

Commit

Permalink
Added error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Filienko committed Feb 2, 2024
1 parent d8ebb01 commit 1fa2e4a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions isacc_messaging/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ def message_status_update():
)
return ex, 500
if result is not None:
audit_entry(
f"on_twilio_message_status_update generated error {result}",
level='error'
)
return result, 200
return '', 204

Expand Down

0 comments on commit 1fa2e4a

Please sign in to comment.