pub trait Logger: Send + Sync {
    fn log(&mut self, mode: Log, message: String);
}

Required Methods

Implementors