func_trace 1.0.3

A procedural macro for tracing the execution of functions
Documentation
1
2
3
4
5
6
[+] Entering foo(a = 1, b = 2)
I'm in foo!
  [ENTER] Entering bar(a = 1, b = 2)
I'm in bar!
  [EXIT] Exiting bar = 2
[-] Exiting foo = ()