diff options
Diffstat (limited to 'data/lib/rpcutils.js')
-rw-r--r-- | data/lib/rpcutils.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/lib/rpcutils.js b/data/lib/rpcutils.js index ee8804a..74b3ded 100644 --- a/data/lib/rpcutils.js +++ b/data/lib/rpcutils.js @@ -13,7 +13,7 @@ function makeJSONRPCCall(method, params, callback) { "params": params }; - console.myDebug("makeJSONRPCCall(" + method + + myDebug("makeJSONRPCCall(" + method + "): out = " + JSON.stringify(msg)); var req = new XMLHttpRequest(); @@ -21,7 +21,7 @@ function makeJSONRPCCall(method, params, callback) { req.onreadystatechange = function (aEvt) { if (req.readyState == 4) { if(req.status == 200) { - console.myDebug("makeJSONRPCCall (" + method + + myDebug("makeJSONRPCCall (" + method + "): in = " + req.responseText); var JSONresponse = JSON.parse(req.responseText); if ("error" in JSONresponse) { |