Macro log_once::warn_once

source ·
macro_rules! warn_once {
    (target: $target:expr, $($arg:tt)*) => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Logs a message once at the warn level.

The log event will only be emitted once for each combinaison of target/arguments.

Logging at this level is disabled if any of the following features are present: max_level_off or max_level_error.

When building in release mode (i.e., without the debug_assertions option), logging at this level is also disabled if any of the following features are present: release_max_level_off or max_level_error.