pub trait LogFormatter { // Required method fn format(&self, entry: &LogEntry) -> String; }
Log formatter trait.
Format a log entry to string.