airbrake-python
airbrake-python copied to clipboard
Airbrake Python
From https://github.com/airbrake/airbrake-python/pull/76#discussion_r113081044 > I think what I'm really trying to say is, if I did something silly/wrong like pass a string to Notice as the exception argument, then I would...
In the following example flask app, we have a report that using `capture()` will not report the appropriate handlers that raised the error (when running on uwsgi). Using `notify()` solved...
@kyrylo summed it up: > I like changelogs more because you can ctrl+f them > and your project isn’t tied to github > And you can browse them locally!
Right now we don't pick up stacktraces from bare exceptions. I think we should make an effort to do this, even though there is no guarantee that `sys.exc_info()` will pick...
As mentioned in https://github.com/airbrake/airbrake-python/pull/67#discussion_r105037391. We have this in the ruby notifier, and we should add it here as well.
We can send multiple exceptions to the API, but right now we don't have a good mechanism for doing this via this client library.
There are a number of options to improve on the current init signature. Right now it's a list of parameters with defaults. What's wrong with the current situation? - A...
Suggested by @samstav https://github.com/airbrake/airbrake-python/pull/53#pullrequestreview-23619228 Quoting: > Since this adds support for the many available options referenced in the README, it might be time to have a helper function that pulls...
We don't seem to pass any environment variables along with the payload. It should get passed into the `Airbrake.log()` func, but I don't see that happening. We set the environment...