* Try to log exception. Do nothing on either fail or success
*
* @param t
*/
public static void logExceptionToServer(Throwable t) {
YasguiServiceAsync yasguiService = YasguiServiceAsync.Util.getInstance();
yasguiService.logException(t, new AsyncCallback<Void>() {
public void onFailure(Throwable caught) {
}
public void onSuccess(Void voidObj) {
}