Reputation: 4771
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:
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.
Upvotes: 8
Views: 3361
Reputation: 1065
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.
Upvotes: 20