macro_rules! info {
(label: $lbl:expr, $($arg:tt)+) => { ... };
($($arg:tt)+) => { ... };
}Expand description
Prints a message with the info label and the provided text
info!("Cleaning up the mess that was made");
// "Waiting" will be displayed in cyan (light blue) as a label
info!(label: "Waiting", "for OAuth2 callback");