pub fn init() -> Result<(), SetLoggerError>
6fn main() { 7 seq_logger::init().unwrap(); 8 for n in 1..1001 { 9 info!("Line {}", n); 10 } 11}