Skip to main content

pr_trace

Macro pr_trace 

Source
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);