removing extra console logging #6596

v1.18.x
Julian Lam 7 years ago
parent 68c9c8c5d9
commit 6485fc3129

@ -18,12 +18,10 @@ module.exports = {
async.each(ips, function (set, next) { async.each(ips, function (set, next) {
// Short circuit if already processed // Short circuit if already processed
if (hashed.test(set.value)) { if (hashed.test(set.value)) {
console.log('done already', set);
return setImmediate(next); return setImmediate(next);
} }
hash = crypto.createHash('sha1').update(set.value + nconf.get('secret')).digest('hex'); hash = crypto.createHash('sha1').update(set.value + nconf.get('secret')).digest('hex');
console.log('processing');
async.series([ async.series([
async.apply(db.sortedSetAdd, 'ip:recent', set.score, hash), async.apply(db.sortedSetAdd, 'ip:recent', set.score, hash),

Loading…
Cancel
Save