When I run my application in my dev environment with
iex -S mix phoenix.server
I am able to use :dbg.tracer to look into my code. But when I build an exrm release and run it with
bin/myapp console
When I try to use :dbg.tracer it tells me "module :dbg is not available". Is there a way to make :dbg available in an exrm release? That would be really handy.