Does anyone know how to make a call trace? So for each function call it prints:
1. Function name 2. Which method will be called 3. Parameters Like `strace` or `ltrace` or `callgrind`. There's a lot of cases where this could be very helpful. Debugging, of course, is one. But also you could make a code coverage tool to see if your tests were hitting all your methods.
