macro_rules! cli_debug {
($text:expr) => { ... };
($text:expr, $( $arg:expr ),*) => { ... };
}Expand description
Outputs a debug message.
Displays text and logs to the configured logger when the log feature is enabled.
ยงExample
use falcon_cli::cli_debug;
cli_debug!("Processing step 1 of 3");
cli_debug!("Variable value: {}", debug_value);