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); }