25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Merge pull request #4256 from slezakattack/elixir_logger

Fix template error for elixir-enabled applications.
This commit is contained in:
badlop 2024-07-15 11:00:07 +02:00 committed by GitHub
commit fb9e2b9603
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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.