We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75022ac + 416de4b commit 9de9f22Copy full SHA for 9de9f22
src/endpoint.js
@@ -53,7 +53,7 @@ module.exports = function (classes){
53
},
54
handleCall: function (decoded, conn, callback){
55
EventEmitter.trace('<--', 'Request (id ' + decoded.id + '): ' +
56
- decoded.method + '(' + decoded.params.join(', ') + ')');
+ decoded.method + '(' + JSON.stringify(decoded.params) + ')');
57
58
if (!this.functions.hasOwnProperty(decoded.method)) {
59
callback(new Error.MethodNotFound('Unknown RPC call "' + decoded.method + '"'));
@@ -74,4 +74,4 @@ module.exports = function (classes){
74
});
75
76
return Endpoint;
77
-};
+};
0 commit comments