Mimicron
Simple callstack tracer. It was written for educational purposes
Installation
If available in Hex, the package can be installed
by adding mimicron to your list of dependencies in mix.exs:
def deps do
[
{:mimicron, "~> 0.1.1"}
]
endUsage
Add use Mimicron in every module that you want to being traced.
If you want to disable tracing, add config :mimicron, active: false to config/config.ex
Sample
run mix test
TODO
- support private functions
- display params of function