Skip to main content

note

Macro note 

Source
macro_rules! note {
    ($($arg:tt)*) => { ... };
}
Expand description

Print a note to stderr.

Suppressed in quiet mode. Adds note: prefix. Use for non-critical informational messages.

note!("existing config found at {}", path.display());
// Output: note: existing config found at /project/.config/rail.toml