Macro logfather::warning

source ·
macro_rules! warning {
    ($message:expr) => { ... };
}
Expand description

Logs a warning message.

Example

use logfather::*;

warning!("This is a warning message");

This macro simplifies the process of logging a message at the Warning level.