cli_trace

Macro cli_trace 

Source
macro_rules! cli_trace {
    ($text:expr) => { ... };
    ($text:expr, $( $arg:expr ),*) => { ... };
}
Expand description

Outputs a trace message.

Displays text and logs to the configured logger when the log feature is enabled. Used for very detailed diagnostic information.

ยงExample

use falcon_cli::cli_trace;

cli_trace!("Entering function parse_config");
cli_trace!("Loop iteration: {}", i);