[][src]Macro artha::logln

macro_rules! logln {
    ($($x: expr),*) => { ... };
}

Removes the need for specifying the display format string in print!.

log!(var) is a shorthand for print!("{}", var)