BACK

2
Posted by axelson 2 years ago
Trace all calls to a module without any external libraries

:dbg.tracer()
# Or replace the `_` with a function name to trace just that function
:dbg.tpl(MyModule, :_, [])
:dbg.p(:all, :call)

# Then at the end to clear the tracing
:dbg.stop_clear()