Skip to main content

LogFormatter

Trait LogFormatter 

Source
pub trait LogFormatter {
    // Required method
    fn format(&self, entry: &LogEntry) -> String;
}
Expand description

Log formatter trait.

Required Methods§

Source

fn format(&self, entry: &LogEntry) -> String

Format a log entry to string.

Implementors§