I'm starting with GWT and smartgwt, and I realized that when your code works on jetty will no necessarily work on Jboss.
Is there a way that I can debug exceptions or any kind of error when something on the client side fails, the jboss console says nothing. I was wondering if I can get the jetty window attached to the app when it is running on jboss.
I'm using Netbeans, jboss 5.1
UPDATE:
Thanks for your help, I've been using com.google.gwt.logging.Logging
and it works pretty nice, but I was looking a way to debug client side code, using netbeans for instance. I know how to debug server side code starting jboss with set JAVA_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y %JAVA_OPTS%
then I attach the netbeans debugger to the 8787 port. Is there a way to do something similar from Jboss to debug client side ?
Also I know how to debug client side code using gwt:debug, but in that case my app is not running on jboss is running on jetty.