Log startup time

This commit is contained in:
Evgeniy Khramtsov 2017-03-18 10:24:42 +03:00
parent e56a76299c
commit 72da5bd062
1 changed files with 4 additions and 2 deletions

View File

@ -40,6 +40,7 @@
%%%
start(normal, _Args) ->
{T1, _} = statistics(wall_clock),
ejabberd_logger:start(),
write_pid_file(),
start_apps(),
@ -54,8 +55,9 @@ start(normal, _Args) ->
case ejabberd_sup:start_link() of
{ok, SupPid} ->
register_elixir_config_hooks(),
?INFO_MSG("ejabberd ~s is started in the node ~p",
[?VERSION, node()]),
{T2, _} = statistics(wall_clock),
?INFO_MSG("ejabberd ~s is started in the node ~p in ~.2fs",
[?VERSION, node(), (T2-T1)/1000]),
{ok, SupPid};
Err ->
Err