20022009 Ericsson AB. All Rights Reserved. The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the Erlang Public License along with this software. If not, it can be retrieved online at http://www.erlang.org/. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. debugger
debugger Erlang Debugger

Erlang Debugger for debugging and testing of Erlang programs.

start() start(File) start(Mode) start(Mode, File) Start Debugger. Mode = local | global File = string()

Starts Debugger.

If given a file name as argument, Debugger will try to load its settings from this file. Refer to Debugger User's Guide for more information about settings.

If given local as argument, Debugger will interpret code only at the current node. If given global as argument, Debugger will interpret code at all known nodes, this is the default.

quick(Module, Name, Args) Debug a process. Module = Name = atom() Args = [term()]

This function can be used to debug a single process. The module Module is interpreted and apply(Module,Name,Args) is called. This will open an Attach Process window, refer to Debugger User's Guide for more information.