Macro infoln

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

Print a message suitable for general information, with a newline at the end. It takes the same arguments as println!.

It outputs to std::io::Stdout by default. If you need more control than that, use infofmt! instead.