Trait flexi_logger::filter::LogLineWriter[][src]

pub trait LogLineWriter {
    fn write(&self, now: &mut DeferredNow, record: &Record<'_>) -> Result<()>;
}
Expand description

Write out a single log line

Required methods

Write out a log line to the configured output channel.

Errors

If writing to the configured output channel fails.

Implementors