trace 0.1.7

A procedural macro for tracing the execution of functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use trace::trace;

trace::init_depth_var!();

fn main() {
    foo(1);
}

#[trace(pause)]
fn foo(a: i32) -> i32 {
    a
}