We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:ignore
currently, to ignore all errors in a specific environment (such as :test or :dev), you set :ignore config to a simple function that returns true:
:test
:dev
config :airbrakex, ignore: fn(_error) -> true end
it'd be more concise / convenient to allow users to set a boolean value here instead:
config :airbrakex, ignore: true
i have a branch open with the change. let me know if this is something you want to support, and i'll be happy to open a PR.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
currently, to ignore all errors in a specific environment (such as
:test
or:dev
), you set:ignore
config to a simple function that returns true:it'd be more concise / convenient to allow users to set a boolean value here instead:
i have a branch open with the change. let me know if this is something you want to support, and i'll be happy to open a PR.
The text was updated successfully, but these errors were encountered: