SASL Reports
Learn and practice SASL reports in this lesson.
We'll cover the following...
We'll cover the following...
SASLs with Elixir
SASLs, or system architecture support libraries, ship as part of Erlang/OTP, providing detailed progress and crash reports. They extend Erlang and Elixir loggers to provide detailed reports from supervisors. We can enable it either with a command-line flag or a configuration option.
Start Elixir or IEx with SASL enabled by passing the --logger-sasl-reports true
flag. Create a new application to try it out:
Press + to interact
mix new sasl_sample
Don’t worry, we have ...