More than 3 years have passed since last update.
Sentry.Plug は Plug.ErrorHandler のコールバックで実装されているので、use Sentry.Plug
する前に無視したいエラーにマッチする handle_errors/2
を定義してやればできる。
lib/myapp_web/router.ex
use Plug.ErrorHandler
defp handle_errors(_conn, %{reason: %{plug_status: status}})
when is_integer(status) and status >= 400 and status < 500 do
nil
end
use Sentry.Plug
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin