Sandro
Sandro

Reputation: 4771

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:

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

Answers (1)

Fabian Vogelsteller
Fabian Vogelsteller

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

Related Questions