macro_rules! dbg_println {
($($arg:tt)*) => { ... };
}Expand description
Debug println! macro that calls println with the specified message(s), and
prefixes a time stamp. Only prints out when the build is in debug mode.
macro_rules! dbg_println {
($($arg:tt)*) => { ... };
}Debug println! macro that calls println with the specified message(s), and
prefixes a time stamp. Only prints out when the build is in debug mode.