analytics/lib/sentry_filter.ex

7 lines
194 B
Elixir
Raw Normal View History

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