trace_macros::strace! [] [src]

macro_rules! strace {
    (type=>$tp:expr, $msg:expr) => { ... };
    ($msg:expr) => { ... };
}

Simplified trace macro

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

Arguments of macro MUST have a formated capabilities i.e. macro does not work with arrays and etc.