We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46b1a18 commit b257146Copy full SHA for b257146
lib/sentry/default_event_filter.ex
@@ -4,11 +4,14 @@ defmodule Sentry.DefaultEventFilter do
4
@moduledoc false
5
6
@ignored_exceptions [
7
+ Phoenix.NotAcceptableError,
8
Phoenix.Router.NoRouteError,
- Plug.Parsers.RequestTooLargeError,
9
+ Plug.Conn.InvalidQueryError,
10
Plug.Parsers.BadEncodingError,
11
Plug.Parsers.ParseError,
- Plug.Parsers.UnsupportedMediaTypeError
12
+ Plug.Parsers.RequestTooLarge,
13
+ Plug.Parsers.UnsupportedMediaTypeError,
14
+ Plug.Static.InvalidPathError
15
]
16
17
def exclude_exception?(%x{}, :plug) when x in @ignored_exceptions do
0 commit comments