macro_rules! gelf_notice {
    (extra: $extra:expr, $($arg:tt)+) => { ... };
    ($($arg:tt)+) => { ... };
}
Expand description

Logs a message at the notice level (Unusual event).

Events that are unusual but not error conditions - might be summarized in an email to developers or admins to spot potential problems - no immediate action required.

§Examples

use gelf_logger::gelf_notice;

gelf_notice!("User reached 90% of his quota");