OutputLogProvider

Trait OutputLogProvider 

Source
pub trait OutputLogProvider: Send + Sync {
    // Required methods
    fn initialize(&self);
    fn debug(&self, tag: &str, msg: String);
    fn info(&self, tag: &str, msg: String);
    fn warn(&self, tag: &str, msg: String);
    fn error(&self, tag: &str, msg: String);
    fn shutdown(&self);
}

Required Methods§

Source

fn initialize(&self)

Source

fn debug(&self, tag: &str, msg: String)

Source

fn info(&self, tag: &str, msg: String)

Source

fn warn(&self, tag: &str, msg: String)

Source

fn error(&self, tag: &str, msg: String)

Source

fn shutdown(&self)

Implementors§