Struct slog_term::CompactFormat
source · pub struct CompactFormat<D>where
D: Decorator,{ /* private fields */ }
Expand description
Compact terminal-output formatting Drain
Note: Compact logging format is not Sync
(thread-safe) and needs to be
synchronized externally, as current output depends on the previous one.
Put it into a std::sync::Mutex
or slog_async::Async
worker-thread to
serialize accesses to it.
Implementations§
source§impl<D> CompactFormat<D>where
D: Decorator,
impl<D> CompactFormat<D>where
D: Decorator,
sourcepub fn new(d: D) -> CompactFormatBuilder<D>
pub fn new(d: D) -> CompactFormatBuilder<D>
New CompactFormatBuilder
Trait Implementations§
source§impl<D> Drain for CompactFormat<D>where
D: Decorator,
impl<D> Drain for CompactFormat<D>where
D: Decorator,
source§fn log(
&self,
record: &Record<'_>,
values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
fn log( &self, record: &Record<'_>, values: &OwnedKVList ) -> Result<Self::Ok, Self::Err>
Handle one logging statement (
Record
) Read moresource§fn is_enabled(&self, level: Level) -> bool
fn is_enabled(&self, level: Level) -> bool
Avoid: Check if messages at the specified log level are maybe
enabled for this logger. Read more
source§fn is_critical_enabled(&self) -> bool
fn is_critical_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_error_enabled(&self) -> bool
fn is_error_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_warning_enabled(&self) -> bool
fn is_warning_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_info_enabled(&self) -> bool
fn is_info_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_debug_enabled(&self) -> bool
fn is_debug_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn is_trace_enabled(&self) -> bool
fn is_trace_enabled(&self) -> bool
Avoid: See
is_enabled
source§fn filter_level(self, level: Level) -> LevelFilter<Self>where
Self: Sized,
fn filter_level(self, level: Level) -> LevelFilter<Self>where
Self: Sized,
Filter logging records passed to
Drain
(by level) Read moresource§fn map_err<F, E>(self, f: F) -> MapError<Self, E>
fn map_err<F, E>(self, f: F) -> MapError<Self, E>
Map logging errors returned by this drain Read more
source§fn ignore_res(self) -> IgnoreResult<Self>where
Self: Sized,
fn ignore_res(self) -> IgnoreResult<Self>where
Self: Sized,
Ignore results returned by this drain Read more
Auto Trait Implementations§
impl<D> !RefUnwindSafe for CompactFormat<D>
impl<D> Send for CompactFormat<D>where
D: Send,
impl<D> !Sync for CompactFormat<D>
impl<D> Unpin for CompactFormat<D>where
D: Unpin,
impl<D> UnwindSafe for CompactFormat<D>where
D: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more