Changes between Version 22 and Version 23 of JavascriptDebugging


Ignore:
Timestamp:
Mar 3, 2013, 7:31:39 PM (11 years ago)
Author:
Yves
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JavascriptDebugging

    v22 v23  
    119119Maybe we will add this to some kind of "assert" function which will not affect release builds.
    120120
     121=== Debugger settings ===
     122The debugger supports some settings that allow you to change its behaviour.
     123These settings are not included in the web GUI at the moment and you have to type some URLs in your browser manually to change them.
    121124
     125==== Simultaneous thread break ====
     126It's enabled by default and means that if one thread stops (because of a breakpoint for example), the debugger will try to stop all other threads too.
     127Note: Setting it to false should work but isn't very well tested.
     128{{{
     129http://127.0.0.1:9000/SetSettingSimultaneousThreadBreak?Enabled=false
     130}}}
    122131
     132==== Break on exception ====
     133It's enabled by default and means that the debugger will stop script execution if any exception is thrown.
     134Even if you disable it, the debugger will still trigger breakpoints exceptions with the message "Breakpoint".
     135{{{
     136http://127.0.0.1:9000/SetSettingBreakOnException?Enabled=false
     137}}}