foundry_common

Macro sh_println

Source
macro_rules! sh_println {
    () => { ... };
    ($fmt:literal $($args:tt)*) => { ... };
    ($shell:expr $(,)?) => { ... };
    ($shell:expr, $($args:tt)*) => { ... };
    ($($args:tt)*) => { ... };
}
Expand description

Prints a raw formatted message to stdout, with a trailing newline.

Note: if verbosity is set to Quiet, this is a no-op.