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

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,
    pub attach_stacktraces: bool,
}

Logger specific options.

Fields

global_filter: Option<LevelFilter>

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

filter: LevelFilter

The sentry specific log level filter (defaults to Info)

emit_breadcrumbs: bool

If set to true, breadcrumbs will be emitted. (defaults to true)

emit_error_events: bool

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

emit_warning_events: bool

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

attach_stacktraces: bool

If set to true current stacktrace will be resolved and attached to each event. (expensive, defaults to true)

Trait Implementations

impl Default for LoggerOptions[src]

Auto Trait Implementations

impl Unpin for LoggerOptions

impl Sync for LoggerOptions

impl Send for LoggerOptions

impl UnwindSafe for LoggerOptions

impl RefUnwindSafe for LoggerOptions

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T[src]

type Output = T

Should always be Self