Use Kernel.inspect/2 to print loaded custom modules

This commit is contained in:
Egor Kislitsyn 2019-12-06 15:16:39 +07:00
parent 157bceeda9
commit e4292cbfad
1 changed files with 1 additions and 2 deletions

View File

@ -82,8 +82,7 @@ defmodule Pleroma.Application do
{:ok, modules, _warnings} ->
Enum.each(modules, fn mod ->
name = mod |> Atom.to_string() |> String.trim_leading("Elixir.")
IO.puts("Custom module loaded: #{name}")
IO.puts("Custom module loaded: #{inspect(mod)}")
end)
:ok