[−][src]Struct sentry::integrations::log::LoggerOptions
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
)
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]
fn default() -> 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]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Erased for T
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self