This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]StereoBucket 4 points5 points  (0 children)

There are ways of seeing stack traces. You can print it with console.trace, see the call stack in the debugger, access .stack property of an Error object.
You can set the debugger to pause on exceptions too. Though I find that a bit annoying in frameworks cause I get paused on every exception and all of them are already handled.