As a beginner in erlang, I'm interested on tracing every step as possible in order to understand the flows happening in my programs.
The first tool at hand is filling every space with
io:format("~w~n", [MyDebuggingText]),
Now, my questions are:
Is there some cool erlang module to make logging, tracing and debugging easier and orderly?
Which is the more popular among seasoned erlang coders?
Thanks in Advance.