From ba2fdbc836aa2bf81cc673533e8b850b4b48ab39 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sat, 4 Sep 2021 09:05:30 -0700 Subject: [PATCH] fix(debug): Removing debug log spam --- src/controllers/json-rpc/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/json-rpc/index.js b/src/controllers/json-rpc/index.js index 9b54d6a..f345b74 100644 --- a/src/controllers/json-rpc/index.js +++ b/src/controllers/json-rpc/index.js @@ -56,7 +56,7 @@ class JSONRPC { // Attempt to parse the incoming data as a JSON RPC string. const parsedData = _this.jsonrpc.parse(str) - console.log('parsedData: ', parsedData) + // console.log('parsedData: ', parsedData) // Exit quietly if the incoming string is an invalid JSON RPC string. if (parsedData.type === 'invalid') {