The remote log level wasn't being set correctly due to the subtleties of how Elixir handles keyword lists.
[a: :b] gets interpreted as [{:a, :b}], but the args list needs [[{:a, :b}]], since the keyword list is just one of multiple possible arguments. This patch gets the log level set correctly.
The remote log level wasn't being set correctly due to the subtleties of how Elixir handles keyword lists.
[a: :b]
gets interpreted as[{:a, :b}]
, but the args list needs[[{:a, :b}]]
, since the keyword list is just one of multiple possible arguments. This patch gets the log level set correctly.