Skip to content

Commit e9ddc0c

Browse files
author
ionut.stan
committed
Small fix.
1 parent 4c13718 commit e9ddc0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsonrpc-bidirectional",
33
"description": "Bidirectional JSONRPC over web sockets or HTTP with extensive plugin support.",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"scripts": {
66
"transpile": "babel src --out-dir src",
77
"todo": "http://jamesknelson.com/using-es6-in-the-browser-with-babel-6-and-webpack/",

src/Plugins/Server/DebugLogger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DebugLogger extends JSONRPC.ServerPluginBase
3636
}
3737
else
3838
{
39-
console.log("[" + (new Date()).toISOString() + "] Sending JSONRPC response: " + incomingRequest.responseBody + "\n");
39+
console.log("[" + (new Date()).toISOString() + "] Sending JSONRPC response: " + incomingRequest.callResultSerialized + "\n");
4040
}
4141
}
4242
};

0 commit comments

Comments
 (0)