25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Move logger app to included_applications

We don't particularly need this to start with ejabberd, and by having
it always started we will change logger to always use elixir formating.
This commit is contained in:
Paweł Chmielowski 2024-07-15 21:26:16 +02:00
parent fb9e2b9603
commit aa02c4de1e

View File

@ -43,11 +43,11 @@ defmodule Ejabberd.MixProject do
def application do
[mod: {:ejabberd_app, []},
applications: [:idna, :inets, :kernel, :sasl, :ssl, :stdlib, :mix, :logger,
applications: [:idna, :inets, :kernel, :sasl, :ssl, :stdlib, :mix,
:fast_tls, :fast_xml, :fast_yaml, :jose,
:p1_utils, :stringprep, :syntax_tools, :yconf, :xmpp]
++ cond_apps(),
included_applications: [:mnesia, :os_mon,
included_applications: [:mnesia, :os_mon, :logger,
:cache_tab, :eimp, :mqtree, :p1_acme,
:p1_oauth2, :pkix]
++ cond_included_apps()]