fix(elixir): do not start logger before config

Despite Hocon generating the same config in both Elixir and Erlang
releases, apparently starting Logger before other applications has the
subtle effect of redirecting all logs to `log/erlang.log.N`, even
those lines that should appear in `log/emqx.log.N`.  Simply not adding
it to the application list restores the Erlang release behavior.
This commit is contained in:
Thales Macedo Garitezi 2022-01-07 14:29:31 -03:00
parent bc498a8041
commit 01092982c1
No known key found for this signature in database
GPG Key ID: DD279F8152A9B6DD
1 changed files with 0 additions and 1 deletions

View File

@ -154,7 +154,6 @@ defmodule EMQXUmbrella.MixProject do
def applications(release_type) do
[
logger: :permanent,
crypto: :permanent,
public_key: :permanent,
asn1: :permanent,