macro_rules! trace_println {
() => { ... };
($s:expr) => { ... };
($s:expr, $($tt:tt)*) => { ... };
}Expand description
Macro for printing to the trace output, with a newline.
Use the format! syntax to write data to the standard output. See
std::fmt for more information.
ยงExamples
trace_println!("Hello, World!");
trace_println!("format {} arguments", "some");