Skip to content

Commit

Permalink
Hotfix - Added Event To Logging (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-macmillan authored May 1, 2024
1 parent 5397bb7 commit 4634c3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def validate_twilio_event(event: dict) -> bool:
params = {k: v[0] for k, v in sorted(params.items())}
return validator.validate(uri=uri, params=params, signature=signature)
except Exception as e:
logger.error('Error validating request origin: %s', e)
logger.error('Error validating request origin: %s - Event: %s', e, event)
return False


Expand Down

0 comments on commit 4634c3b

Please sign in to comment.