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

Logs a message at the info level (Normal message).

Normal operational messages - may be harvested for reporting, measuring throughput, etc.

  • no action required.

§Examples

use gelf_logger::gelf_info;

gelf_info!("Downloading file...");