Hi,

I have the following code and would like to log the exception stack
trace:

           try {
            builder.sendRequest(requestData, new RequestCallback() {
              public void onError(Request request, Throwable
exception) {
                // handle onError
              }

              public void onResponseReceived(Request request, Response
response) {
                // handle onResponseReceived
              }
            });
          } catch (RequestException re) {
            re.printStackTrace();
          }

What will be the best way to log the complete stack trace in
RequestException?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"gwt-log" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/gwt-log?hl=en.

Reply via email to