Trait diem_logger::Writer[][src]

pub trait Writer: Send + Sync {
    fn write(&self, log: String);
}
Expand description

An trait encapsulating the operations required for writing logs.

Required methods

Write the log.

Implementors