shoehorn icon indicating copy to clipboard operation
shoehorn copied to clipboard

Handle OTP application failures without restarting the Erlang VM

Results 5 shoehorn issues
Sort by recently updated
recently updated
newest added

This is a first naive port based on the docs here: https://www.erlang.org/doc/apps/kernel/logger_chapter.html#example--implement-a-handler I've opted for doing the pattern matching in the process generating the logs, so there's less message passing...

### Environment * Elixir version (`elixir -v`): * Additional information about your host, target hardware or environment that may help ### Current behavior > Unless overridden in the Mix release...

Shoehorn currently uses [error_logger](https://www.erlang.org/doc/man/error_logger.html). If you go to the link, you'll see that it's been superseded by the new Logger API. It's not causing issues, now, but Shoehorn should be...

Elixir 1.15 brought in a lot of changes to logging, particularly around its use of :error_logger. Reports were no longer being received in Shoehorn.ReportHandler. To get around this, we set...

### Environment * Elixir version (`elixir -v`): 1.16.3 OTP 26.2.5 * Additional information about your host, target hardware or environment that may help I am running the steps in the...