From: Holger Weiss Date: Thu, 8 Sep 2016 15:59:40 +0000 (+0200) Subject: Don't log an [error] message if Elixir is missing X-Git-Tag: 16.09~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41386d718dbc5f6e846baaac568ba1cae5eb7ec4;p=ejabberd Don't log an [error] message if Elixir is missing The Elixir support is still optional. Closes #1250. --- diff --git a/src/ejabberd_app.erl b/src/ejabberd_app.erl index 890ab6f90..fc9c5a428 100644 --- a/src/ejabberd_app.erl +++ b/src/ejabberd_app.erl @@ -259,7 +259,7 @@ start_elixir_application() -> true -> case application:ensure_started(elixir) of ok -> ok; - {error, _Msg} -> ?ERROR_MSG("Elixir application not started.", []) + {error, _Msg} -> ?INFO_MSG("Elixir application not started.", []) end; _ -> ok