macro_rules! warn {
(target=$target:expr,$($arg:tt)*) => { ... };
($($arg:tt)*) => { ... };
}
Expand description
Log a message with the warn
level. Regular formatting may be used.
macro_rules! warn {
(target=$target:expr,$($arg:tt)*) => { ... };
($($arg:tt)*) => { ... };
}
Log a message with the warn
level. Regular formatting may be used.