[][src]Macro artha::log

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

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

logln!(var) is a shorthand for println!("{}", var)