rusty_cute_macros::trace! [] [src]

macro_rules! trace {
    ($($arg:tt)+) => { ... };
}

Trace macro like println

It uses format_args! for creating formatted string from passed arguments.

Prints with the following format: file!:line! - [type:] [Message]