pub trait Log {
    fn info(&self, text: &str);
    fn error(&self, text: &str);
}

Required methods

Implementors