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
We recently upgraded to Elixir 1.15 and noticed that certain errors like LiveView process crashes were no longer being sent to Rollbar despite having enable_crash_reports enabled. The problem appears to be related to the fact that Rollbax registers itself as a handler to the old :error_logger, while Elixir has been moving to :logger instead.
enable_crash_reports
:error_logger
:logger
There's a little more background and discussion in this issue: elixir-lang/elixir#13030
The text was updated successfully, but these errors were encountered:
We solved this issue for ourselves by writing a new library/package called tower_rollbar (https://github.com/mimiquate/tower_rollbar) from scratch, which we ended up open sourcing and releasing.
tower_rollbar
It's compatible with elixir 1.15+.
Built on top of newer Erlang's logger and Elixir Logger. No code nor support for old and deprecated error_logger.
logger
Logger
error_logger
Hope it proves useful for others as it has been for us so far after a few months on production 🙂
Sorry, something went wrong.
No branches or pull requests
We recently upgraded to Elixir 1.15 and noticed that certain errors like LiveView process crashes were no longer being sent to Rollbar despite having
enable_crash_reports
enabled. The problem appears to be related to the fact that Rollbax registers itself as a handler to the old:error_logger
, while Elixir has been moving to:logger
instead.There's a little more background and discussion in this issue: elixir-lang/elixir#13030
The text was updated successfully, but these errors were encountered: