Packages

Live error monitoring to watch your Phoenix app going up in flames in real time! Open source version of error aggregation services. Hooks into Elixir's Logger to provide accurate error reporting all throughout your application.

Current section

Files

Jump to
flames lib web channels error_channel.ex
Raw

lib/web/channels/error_channel.ex

if Code.ensure_loaded?(Phoenix.Channel) do
defmodule Flames.ErrorChannel do
use Flames.Web, :channel
def join("errors", _params, socket) do
{:ok, socket}
end
end
end