macro_rules! dbg_xprint {
($($message:expr),*) => { ... };
}Expand description
ยงEXTENDED print, println, eprint, eprintln functions Print also module name that is calling function
Prints to the standard ouput only in debug build.
In release build this macro is not compiled thanks to #[cfg(debug_assertions)].
see https://doc.rust-lang.org/std/macro.print.html for more info.