pub trait Logger {
    // Required method
    fn emit(&self, record: LogRecord);
}
Available on crate feature logs only.
Expand description

The interface for emitting LogRecords.

Required Methods§

source

fn emit(&self, record: LogRecord)

Emit a LogRecord. If there is active current thread’s Context, the logger will set the record’s TraceContext to the active trace context,

Implementors§