Drakulix / simplelog.rs

Simple Logging Facility for Rust
https://docs.rs/simplelog/
Apache License 2.0
424 stars 71 forks source link

Readme example needs .unwrap() #9

Closed indefini closed 6 years ago

indefini commented 6 years ago

Very small issue but the example in the Readme needs .unwrap() on the TermLogger.

TermLogger::new(LogLevelFilter::Warn, Config::default()), => TermLogger::new(LogLevelFilter::Warn, Config::default()).unwrap(),

Drakulix commented 6 years ago

Thanks for the heads up :+1: