Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stop Safari 6 JS Debugger From Being So Verbose

I'm finding the Safari 6 debugger to be extremely verbose and pauses execution of JS for every minor exception. Does anyone know how to disable this?

Example:

  • Open web inspector in Safari 6
  • Visit http://www.google.com/mobile/

Notice how even if you were in the JS console, you'd be switched into debug view to see the error. This is not very good and slows debugging down considerably.

like image 542
Sandro Avatar asked Jul 31 '12 15:07

Sandro


1 Answers

to disable the the breaks, you have to go to "Breakpoints (CTRL + 7)" and then disable "All Uncaught Exceptions". This should do the trick.

But i myself, find that the console is really slow, it has a delay until it shows the "console.log()" messages. This is quite annoying.

like image 67
Fabian Vogelsteller Avatar answered Oct 13 '22 00:10

Fabian Vogelsteller