mirror of
https://github.com/plausible/analytics.git
synced 2024-12-17 22:31:44 +03:00
7 lines
194 B
Elixir
7 lines
194 B
Elixir
|
defmodule Plausible.SentryFilter do
|
||
|
@behaviour Sentry.EventFilter
|
||
|
|
||
|
def exclude_exception?(%Sentry.CrashError{}, _source), do: true
|
||
|
def exclude_exception?(exception, source), do: false
|
||
|
end
|