Current section

Files

Jump to
islands_engine lib islands engine proxy error.ex
Raw

lib/islands/engine/proxy/error.ex

defmodule Islands.Engine.Proxy.Error do
@moduledoc false
require Logger
@spec log(atom, term, tuple) :: :ok
def log(:exit, reason, caller) do
Logger.error("""
\n`exit` caught for calling function #{inspect(caller)}...
`exit` reason:
#{inspect(reason)}
""")
end
end