Skip to content

Commit

Permalink
Move logger app to included_applications
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
prefiks committed Jul 15, 2024
1 parent fb9e2b9 commit aa02c4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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()]
Expand Down

0 comments on commit aa02c4d

Please sign in to comment.