So far, debugging in GWT super dev mode seems to be a real pain. If there are any errors, there is no stack trace, just a cryptic message given in the chrome console. Is there a way to get all errors to print a stack trace, like in the dev mode?
I already have source maps on I believe, since if I go to Sources in Chrome's dev tools, I can see the source code of my java classes.
GWT.setUnhandledExceptionHandler
. That will let you set the exception handler, and then you can print the stack trace of that exception to the console. – Kurtiskurtosis