macro_rules! pr_trace {
($($arg:tt)*) => { ... };
}Expand description
Logs a message at the Trace level.
Use for very detailed tracing of execution flow. This is the most verbose level and should be used sparingly.
ยงExample
use reovim_kernel::api::v1::pr_trace;
pr_trace!("processing event");
pr_trace!("loop iteration {}", 42);