diff options
author | Dan Gudmundsson <[email protected]> | 2014-12-08 09:40:59 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2014-12-08 09:40:59 +0100 |
commit | aa1e961f4dc6250f1ccbfbf150cae8dbef1503e9 (patch) | |
tree | add1fd0c796ae2a4df8f075b89cc5e83ff6834dd /lib/debugger/src/i.erl | |
parent | e2242fb7fa98feec9242c71a473af7e99d6a7bd1 (diff) | |
download | otp-aa1e961f4dc6250f1ccbfbf150cae8dbef1503e9.tar.gz otp-aa1e961f4dc6250f1ccbfbf150cae8dbef1503e9.tar.bz2 otp-aa1e961f4dc6250f1ccbfbf150cae8dbef1503e9.zip |
debugger: Do not use the old removed gs functionality
dbg_ui_trace module was invoked even though the module had been removed.
Diffstat (limited to 'lib/debugger/src/i.erl')
-rw-r--r-- | lib/debugger/src/i.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/src/i.erl b/lib/debugger/src/i.erl index 5805501524..0afb998097 100644 --- a/lib/debugger/src/i.erl +++ b/lib/debugger/src/i.erl @@ -250,7 +250,7 @@ ist(Flag) -> %% ------------------------------------------- iaa(Flag) -> - iaa(Flag,{dbg_ui_trace,start,[]}). + iaa(Flag,{dbg_wx_trace,start,[]}). %% ------------------------------------------- %% Set the automatic attachment flag. @@ -271,7 +271,7 @@ iaa(Flag,Fnk) -> %% ------------------------------------------- ia(Pid) -> - ia(Pid,{dbg_ui_trace,start}). + ia(Pid,{dbg_wx_trace,start}). %% ------------------------------------------- %% Attach to process. |