From 26390078be035b70208d0d61bb740fe4cf509846 Mon Sep 17 00:00:00 2001 From: Kazunari Okuda Date: Thu, 11 Aug 2022 11:31:01 +0200 Subject: [PATCH] fix: fix the "logger:remove_handler(default) failed" error Tried this: /~https://github.com/erlang-lager/lager/issues/507#issuecomment-570378407j --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index b7f1e00..2702c98 100644 --- a/mix.exs +++ b/mix.exs @@ -20,7 +20,7 @@ defmodule Apr.MixProject do def application do [ mod: {Apr.Application, []}, - extra_applications: [:logger, :runtime_tools] + extra_applications: [:lager, :logger, :runtime_tools] ] end