Struct actix_tools::sentry::sentry_client::integrations::log::LoggerOptions[][src]

pub struct LoggerOptions {
    pub global_filter: Option<LevelFilter>,
    pub filter: LevelFilter,
    pub emit_breadcrumbs: bool,
    pub emit_error_events: bool,
    pub emit_warning_events: bool,
}

Logger specific options.

Fields

The global filter that should be used (also used before dispatching to the nested logger).

The sentry specific log level filter (defaults to Info)

If set to true, breadcrumbs are emitted. (defaults to true)

If set to true error events are sent for errors in the log. (defaults to true)

If set to true warning events are sent for warnings in the log. (defaults to false)

Trait Implementations

impl Default for LoggerOptions
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations