From 8b30e54054759f73099b610afe23295c3e86cfcb Mon Sep 17 00:00:00 2001 From: John Furrow Date: Thu, 11 Feb 2016 22:37:09 -0800 Subject: [PATCH] Remove debug helper --- server/models/TorrentCollection.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/models/TorrentCollection.js b/server/models/TorrentCollection.js index 169d0215..aaf6a356 100644 --- a/server/models/TorrentCollection.js +++ b/server/models/TorrentCollection.js @@ -54,8 +54,6 @@ class TorrentCollection { let currentHashes = Object.keys(this._torrents); let removedHashes = _.difference(currentHashes, newHashes); - console.log(`removing ${removedHashes.length} hashes`); - removedHashes.forEach((hash) => { delete this._torrents[hash]; });