Skip to content

Instantly share code, notes, and snippets.

@DanielOberg
Last active December 11, 2015 17:49
Show Gist options
  • Save DanielOberg/4637548 to your computer and use it in GitHub Desktop.
Save DanielOberg/4637548 to your computer and use it in GitHub Desktop.
Erlang Debugging

% How to break at a specific line with the Erlang shell

im(). % start Erlang debugger monitor

ii(modulename). % specify module

ib(modulename, 13). % set breakpoint (line number 13)

iaa([break]). % tell debugger to start debugging when breakpoint is hit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment