25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-10-19 15:32:08 +02:00

Fix template error for elixir-enabled applications.

This commit is contained in:
Michael Slezak 2024-07-12 14:39:42 -06:00
parent 101cce0c1e
commit 090a8e3c95

View File

@ -370,7 +370,7 @@ console_template() ->
andalso
'Elixir.System':version() >= <<"1.15">> of
true ->
[date, " ", time, " [", level, "] ", message, "\n"];
[date, " ", time, " [", level, "] ", msg, "\n"];
false ->
[time, " [", level, "] " | msg()]
end.