macro_rules! debug_warn {
( $($x:tt)+ ) => { ... };
}Expand description
Log message at the WARN level in debug-mode (when debug-assertions are enabled). In release-mode it becomes DEBUG level, and possibly subject to elision.
macro_rules! debug_warn {
( $($x:tt)+ ) => { ... };
}Log message at the WARN level in debug-mode (when debug-assertions are enabled). In release-mode it becomes DEBUG level, and possibly subject to elision.