From cbf4a0ecc411ab27de70b564de1517f36c8f32c9 Mon Sep 17 00:00:00 2001 From: Ryan Ghods Date: Tue, 13 Feb 2018 09:11:39 -0800 Subject: [PATCH] Remove extra console.log --- modules/ipc/methods/base.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/ipc/methods/base.js b/modules/ipc/methods/base.js index b92981594..9ef5da60f 100644 --- a/modules/ipc/methods/base.js +++ b/modules/ipc/methods/base.js @@ -77,7 +77,6 @@ module.exports = class BaseProcessor { _throttle(payload, conn) { if (this.lastThrottleBypass[payload.method]) { - console.log(payload.method, Date.now(), this.lastThrottleBypass[payload.method], Date.now() - this.lastThrottleBypass[payload.method]); if (Date.now() - this.lastThrottleBypass[payload.method] > this.throttleTimeout[payload.method]) { // Bypass this.lastThrottleBypass[payload.method] = Date.now();