From aa02c4de1eda9b168e373a0ab13f63f115814b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Chmielowski?= Date: Mon, 15 Jul 2024 21:26:16 +0200 Subject: [PATCH] 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. --- mix.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 5e52e7469..89f73bda0 100644 --- a/mix.exs +++ b/mix.exs @@ -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()]