24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-04 21:27:16 +02:00

Don't log an [error] message if Elixir is missing

The Elixir support is still optional.

Closes #1250.
This commit is contained in:
Holger Weiss 2016-09-08 17:59:40 +02:00
parent 26a040e2d5
commit 41386d718d

View File

@ -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