pub type LogEntry { Debug(msg: String) Query(sql: String) Info(msg: String) }
Debug(msg: String)
Query(sql: String)
Info(msg: String)
pub fn report(entry: LogEntry) -> Nil