Macro get_trace
Source macro_rules! get_trace {
() => { ... };
($tag:ident) => { ... };
}
Expand description
Retrieves the trace for a specific tag or the default tag.
§Usage
get_trace!(): Gets the trace for the default tag.
get_trace!(tag): Gets the trace for a specific tag.
§Returns
Returns a String containing the trace output.