[][src]Macro abscissa_core::status_warn

macro_rules! status_warn {
    ($msg:expr) => { ... };
    ($fmt:expr, $($arg:tt)+) => { ... };
}

Print a warning status message (in yellow if colors are enabled)

# #[macro_use] extern crate abscissa;
# fn main() {
// Print a Cargo-like justified status to STDOUT
status_warn!("heads up, there's something you should know");
# }