1

Is there a way to prevent chrome from stopping on debugger statements while the devtools window is open, and at the same time allow stopping on manually set breakpoints?

The deactivate breakpoints button (⌘/ctrl + F8) disables both the debugger statements and the user breakpoints so it's not really a solution. It would be good to somehow be able to control separately 'code' breakpoints and 'devtools' breakpoints.

ccpizza
  • 28,968
  • 18
  • 162
  • 169

2 Answers2

2

You can use "Never Pause Here" feature. but you need to do it for every line.

m.hassaballah
  • 250
  • 1
  • 5
0

How about two scripts to launch your app , where one script can comment out all the debugger statements and then launch the app ?

If it's that important to you right now.

snikit
  • 11
  • 4