From a7e40040a130b4424634ac9a38135dfaad8dd182 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 6 Sep 2019 14:36:22 +0200 Subject: [PATCH] log unauthenticated RPC calls as silly --- rpc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc.js b/rpc.js index 9287d25ad..5655061a7 100644 --- a/rpc.js +++ b/rpc.js @@ -1837,6 +1837,7 @@ RPC.create = function ( }; var handleUnauthenticatedMessage = function (msg, respond, nfwssCtx) { + Log.silly('LOG_RPC', msg[0]); switch (msg[0]) { case 'GET_HISTORY_OFFSET': { if (typeof(msg[1]) !== 'object' || typeof(msg[1].channelName) !== 'string') {