pub trait LogLineWriter { // Required method fn write( &self, now: &mut DeferredNow, record: &Record<'_>, ) -> Result<(), Error>; }
Write out a single log line
Write out a log line to the configured output channel.
If writing to the configured output channel fails.