Macro 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! - [Message]

Time feature

By adding time crate and enabling feature time the date in following format will be used: [dd/mt/yy hh-mm-ss.ms]

Example of enabling: rusty-cute-macros = { version = "*", features = ["time"] }