clux / loggerv

A minimalistic stdout/stderr logger for rust
https://docs.rs/loggerv
MIT License
21 stars 6 forks source link

Documentation stills mention log::LogLevel instead of log::Level #21

Closed XavierT closed 5 years ago

XavierT commented 5 years ago

Hello,

This is a really minor issue.

It is probably something that changed when log crate was updated to 0.4, but the documentation still mentions loggerv::init_with_level(LogLevel::Info).unwrap() which should now be loggerv::init_with_level(Level::Info).unwrap()

clux commented 5 years ago

Thanks! Will try to sort that in the next update!

(Although feel free to submit a PR).

clux commented 5 years ago

Oh, I misunderstood you. This was just github-pages D:

Have updated it now. Thanks for the reminder!