Enum sentry_slog::LevelFilter
source · pub enum LevelFilter {
Ignore,
Breadcrumb,
Event,
Exception,
}Expand description
The action that Sentry should perform for a slog::Level.
Variants§
Ignore
Ignore the Record.
Breadcrumb
Create a [Breadcrumb] from this Record.
Event
Create a message [Event] from this Record.
Exception
Create an exception [Event] from this Record.