cli_warn

Macro cli_warn 

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

Outputs a warning message.

Displays text and optionally logs to the configured logger when the log feature is enabled.

ยงExample

use falcon_cli::cli_warn;

cli_warn!("Configuration file not found, using defaults");
cli_warn!("Deprecated feature: {}", "old_api");