How about opening a bug and attaching a patch?!

T.

On 10/06/2010 02:55 PM, Jean-Noël Rivasseau wrote:
> 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!
> 

------------------------------------------------------------------------------
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