You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by jo...@apache.org on 2009/08/25 09:56:08 UTC

svn commit: r807511 - /incubator/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js

Author: johnh
Date: Tue Aug 25 07:56:07 2009
New Revision: 807511

URL: http://svn.apache.org/viewvc?rev=807511&view=rev
Log:
FallbackTransport log code cleanup.


Modified:
    incubator/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js

Modified: incubator/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js?rev=807511&r1=807510&r2=807511&view=diff
==============================================================================
--- incubator/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js (original)
+++ incubator/shindig/trunk/features/src/main/javascript/features/rpc/rpc.js Tue Aug 25 07:56:07 2009
@@ -93,7 +93,7 @@
     function logFn(name) {
       return function() {
         gadgets.log("gadgets.rpc." + name + "(" +
-                    gadgets.json.stringify(arguments) +
+                    gadgets.json.stringify(Array.prototype.slice.call(arguments)) +
                     "): call ignored. [caller: " + document.location +
                     ", isGadget: " + isGadget + "]");
       }