macro_rules! success {
(label: $lbl:expr, $($arg:tt)+) => { ... };
($($arg:tt)+) => { ... };
}Expand description
Prints a message with the success label and the provided text
success!("temporary file successfully deleted");
// "Waouh" will be displayed in green as a label
success!(label: "Waouh", "you successfully did not went on StackOverflow for 5min");