LogHandler

Trait LogHandler 

Source
pub trait LogHandler: Send + Sync {
    // Required method
    fn handle(&self, entry: &LogEntry);
}
Expand description

Handler trait for processing log entries

Required Methods§

Source

fn handle(&self, entry: &LogEntry)

Handle a log entry

Implementors§