From a39c13063370b6d6bdd00fffac9c563f2d660e13 Mon Sep 17 00:00:00 2001 From: crusader Date: Sun, 18 Mar 2018 22:42:32 +0900 Subject: [PATCH] ing --- src/packages/core/rpc/client/RPCClient.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/packages/core/rpc/client/RPCClient.ts b/src/packages/core/rpc/client/RPCClient.ts index 3758ea1..44be1c0 100644 --- a/src/packages/core/rpc/client/RPCClient.ts +++ b/src/packages/core/rpc/client/RPCClient.ts @@ -101,7 +101,9 @@ export abstract class RPCClient { const resCodec = this._codec.response(message); if (resCodec.isNotification()) { - this.onNotification(resCodec.notification()); + const noti = resCodec.notification(); + console.log(`RPC Notification: ${noti}`); + this.onNotification(noti); } else { this.onResponse(resCodec); }