Enum sentry_log::RecordMapping
source · pub enum RecordMapping {
Ignore,
Breadcrumb(Breadcrumb),
Event(Event<'static>),
}Expand description
The type of Data Sentry should ingest for a log::Record.
Variants§
Ignore
Ignore the Record.
Breadcrumb(Breadcrumb)
Adds the [Breadcrumb] to the Sentry scope.
Event(Event<'static>)
Captures the [Event] to Sentry.