I've just started using Elixir, and have started a Phoenix project, which I enjoy a lot. Now by having rails background, I'm used to being spoiled with debugging tools like "debugger", "byebug" and so on; I was wondering if there are any similar tools for Elixir? How are you guys debugging your Elixir applications?
Even an equivalent to Rubys raise my_object.inspect, would do wonders!
Thank you
:observer.start(run it on IEx). It is a great tool for debugging and exploring running applications. - José Valim