From e483263d70c28875849896265246218a0bcdd082 Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Sat, 27 Aug 2016 03:36:28 -0300 Subject: [PATCH] removed logging --- src/renderer/controllers/torrent-list-controller.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/renderer/controllers/torrent-list-controller.js b/src/renderer/controllers/torrent-list-controller.js index 50012451..6a743098 100644 --- a/src/renderer/controllers/torrent-list-controller.js +++ b/src/renderer/controllers/torrent-list-controller.js @@ -104,7 +104,6 @@ module.exports = class TorrentListController { } pauseAll ({filter, excluded}) { - console.log('--- pause all') this.state.saved.torrents.map((torrent) => { // "excluded" is an array of torrents that should not be paused if (excluded) { @@ -124,7 +123,6 @@ module.exports = class TorrentListController { } resumePausedTorrents () { - console.log('--- resume paused torrents') this.state.saved.pausedTorrents.map((infoHash) => { var torrentSummary = TorrentSummary.getByKey(this.state, infoHash) this.startTorrent(torrentSummary)