Skip to main content

pr_debug

Macro pr_debug 

Source
macro_rules! pr_debug {
    ($($arg:tt)*) => { ... };
}
Expand description

Logs a message at the Debug level.

Use for detailed diagnostic information useful during development. These messages are typically disabled in release builds.

ยงExample

use reovim_kernel::api::v1::pr_debug;

let cursor_pos = (10, 5);
pr_debug!("cursor moved to {:?}", cursor_pos);
pr_debug!("entering function");