Log crate with notice level

Is there a crate for logging that supports more than 5 levels, esp. a level between info and warning like Unix syslog' notice?

A crate Slog have 6 levels:

pub enum Level {
    Critical,
    Error,
    Warning,
    Info,
    Debug,
    Trace,
}

but i don't know if trace == notice.

casual_loger have 7 levels.

https://github.com/rust-lang/log/issues/334

Thanks for the link to the bug report. I hope that gets through. I really want a level above Info. Currently, I use Warning with a prefix to identify Notice messages.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.