analytics/lib/sentry_filter.ex
2022-07-14 03:26:59 +03:00

10 lines
261 B
Elixir

defmodule Plausible.SentryFilter do
@behaviour Sentry.EventFilter
def exclude_exception?(%Sentry.CrashError{}, _source), do: true
def exclude_exception?(exception, source) do
Sentry.DefaultEventFilter.exclude_exception?(exception, source)
end
end