info

Macro info 

Source
macro_rules! info {
    ($msg:expr) => { ... };
    ($msg:expr, $symbol:expr) => { ... };
}
Expand description

Print an info message with optional custom symbol

§Examples

use supercli::info;

info!("Processing files..."); // Uses default ℹ
info!("Scanning files...", "🔍"); // Uses custom symbol
info!("Using parallel processing...", "⚡"); // Uses custom symbol