I just received a RuntimeError: ``` expected Vigil.call/2 to return a Plug.Conn, all plugs must receive a connection (conn) and return a connection, got: :ok ``` caused by the rescue returning `:ok` ``` def call(%Plug.Conn{} = conn, opts) do ... rescue e -> LogFormatter.log(conn, e, opts) end ``` Did you want to call `reraise/2` or `forbid_connection`? I didn't set the log_level in the plug so I'm not sure of the underlying exception.
I just received a RuntimeError:
caused by the rescue returning
:okDid you want to call
reraise/2orforbid_connection?I didn't set the log_level in the plug so I'm not sure of the underlying exception.