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`](https://github.com/ForzaElixir/rollbax/blob/5ea0ab4850d9ca5ba23ca961344ae6db586a6295/lib/rollbax.ex#L86-L90), while [Elixir has been moving to `:logger`](https://github.com/elixir-lang/elixir/commit/a7c74e254565242f6ecdf14ee1ae0f7ec231139c) instead. There's a little more background and discussion in this issue: https://github.com/elixir-lang/elixir/issues/13030