macro_rules! cli_info {
($text:expr) => { ... };
($text:expr, $( $arg:expr ),*) => { ... };
}Expand description
Outputs an informational message.
Displays text and optionally logs to the configured logger when the log feature is enabled.
ยงExample
use falcon_cli::cli_info;
cli_info!("Application started successfully");
cli_info!("Loaded {} configuration files", 5);