pub trait LogHandler: Send + Sync + 'static { // Required method fn log(&self, level: LogLevel, message: &str, data: &[u8]); }
Log handler trait