You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* `traceback.format_exc()` returns a string so we shouldn't json.dumps() it.
* `traceback.format_exc()` should always return a truthy value so `or e`
does nothing.
* The coroutine returned by `post_log()` is not callable so it doens't make
sense to call `create_once_callable()` on it. We want `create_proxy()`.
* extract post_log function to top level
* explicitly convert error to string for clarity when assigning to headers
* `str(e)` already includes a traceback so we don't need to include a separate
traceback here
0 commit comments