Skip to content
This repository was archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Remove extra console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio authored and wolovim committed Mar 14, 2018
1 parent 6de9d20 commit cbf4a0e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion modules/ipc/methods/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit cbf4a0e

Please sign in to comment.