macro_rules! trace_simple_print {
($category: ident, $($t:tt)+) => { ... };
($($t:tt)*) => { ... };
}Expand description
Prints a single non-scoped message without creating a trace context. The tagged variant lets us enable or disable individual categories.