[erlang-questions] UI Debugger

Vlad Dumitrescu vladdu55@REDACTED
Wed Sep 6 14:51:15 CEST 2006


On 9/6/06, Jean Verger <jean.verger@REDACTED> wrote:
> I bet there are some usefull debuggers for remote servers. Any sugestions?

Hi,

>From the debugger's user guide
(http://www.erlang.org/doc/doc-5.5.1/lib/debugger-3.1/doc/html/part_frame.html):

1.11 Debugging Remote Nodes
By using debugger:start/1, it can be specified if Debugger should be
started in local or global mode.

debugger:start(local | global)

If no argument is provided, Debugger is started in global mode.

In local mode, code is interpreted only at the current node. In global
mode, code is interpreted at all known nodes. Processes at other nodes
executing interpreted code will automatically be shown in the Monitor
window and can be attached to like any other debugged process.

It is possible, but definitely not recommended to start Debugger in
global mode on more than one node in a network, as they will interfer
with each other leading to inconsistent behaviour.

regards,
Vlad



More information about the erlang-questions mailing list