Open grzuy opened 2 hours ago
Any exception for which Plug.Exception.status(exception) is less than 500 should not be reported. As is working with Plug.Cowboy.
Plug.Exception.status(exception)
500
Plug.Cowboy
This in part caused because for Bandit we're listening for Telemetry events instead of log events. And Bandit emits telemetry events for all exceptions regardless of it's Plug.Exception.status result.
Plug.Exception.status
Any exception for which
Plug.Exception.status(exception)
is less than500
should not be reported. As is working withPlug.Cowboy
.