Notes by Matt Stubbs

Disable Elixir Logger for a given process

It can be useful to disable the Elixir Logger output for a function that runs frequently, particularly if the function is recalled frequently or repetitively.

To disable the logger for the current process set the log level to none:

Logger.put_process_level(self(), :none)

Any other processes will continue to log with the default level.