Macro process_println

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

Uses the print_to_terminal function from the WIT interface on maximally-verbose mode, i.e., this print will always show up in the terminal. To control the verbosity, use the print_to_terminal function directly.

This version of println prepends the name of the process, so developers can see which process within a package is generating the print.