macro_rules! print_trace {
() => { ... };
($tag:ident) => { ... };
}Expand description
Prints the trace for a specific tag or the default tag.
ยงUsage
print_trace!(): Prints the trace for the default tag.print_trace!(tag): Prints the trace for a specific tag.