pub struct Logfmt<W: Write> { /* private fields */ }
Expand description
A drain & formatter for logfmt-formatted messages.
§Format
The default format looks like the somewhat-more-human-readable
format in https://brandur.org/logfmt#human. You can customize it
with the LogfmtBuilder
method set_prefix
.
Implementations§
Trait Implementations§
Source§impl<W> Drain for Logfmt<W>where
W: Write,
impl<W> Drain for Logfmt<W>where
W: Write,
Source§fn log<'a>(
&self,
record: &Record<'a>,
logger_values: &OwnedKVList,
) -> Result<Self::Ok, Self::Err>
fn log<'a>( &self, record: &Record<'a>, logger_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<W> !Freeze for Logfmt<W>
impl<W> !RefUnwindSafe for Logfmt<W>
impl<W> Send for Logfmt<W>where
W: Send,
impl<W> !Sync for Logfmt<W>
impl<W> Unpin for Logfmt<W>where
W: Unpin,
impl<W> UnwindSafe for Logfmt<W>where
W: 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