Skip to main content

err

Macro err 

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

Print a message with the error prefix.

By default err will write to stderr. This can be changed with the only_stdout feature.

To change the error prefix use error_prefix_str or error_prefix_fn.