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
1 changed files with 1 additions and 1 deletions

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