Hi,

Would it be possible to change the following line in qx.io.remote.Exchange:

        this.warn("Timeout: implementation " + vImplementation.toHashCode());

to:

                  var str = "";
                  for (key in vImplementation.getParameters())
                  {
                        str += "&" + key + "=" + 
vImplementation.getParameters()[key];
                  }
        this.warn("Timeout: implementation " +
vImplementation.toHashCode() + ", " + vImplementation.getUrl() + ", "
+ str);


This is because getting useful information about the request that
timed out is important for us. The hashCode is just an internal number
and does not help us to indentify which request timedout. However the
code I wrote gives the URL and parameters, which is enough to help us
debug when an error report like this hits our servers.

I already patched my own version of Qooxdoo locally but this would be
great if this could be applied upstream. I probably would not be the
only one that would benefit from it.

Thanks!

-- 
Jean-Noël Rivasseau
Directeur
(1) 778 786 3460 / (33) 01 82 88 05 26
Kameleoon - morphing the web
http://www.kameleoon.com/

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to