[scraper] remove updated seeders logging

This commit is contained in:
TheBeastLT
2020-03-30 16:16:45 +02:00
parent 97cbe5d6c1
commit 1719a199b0

View File

@@ -67,10 +67,6 @@ async function updateTorrentSeeders(torrent) {
return stored.save()
}
})
.then(updated => {
console.log(`Updated [${torrent.infoHash}] ${torrent.name || torrent.title} to ${torrent.seeders} seeders`);
return updated;
})
.catch(error => {
console.warn('Failed updating seeders:', error);
return undefined;