Macro warn

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

Log a message with the warn level. Regular formatting may be used.