removed console.log

This commit is contained in:
Julian Lam
2016-02-25 16:22:35 -05:00
parent db3446b1ca
commit dd3f1b9ba8

View File

@@ -84,7 +84,6 @@ var db = require('./database');
if (Object.keys(counters).length > 0) {
for(var key in counters) {
console.log('flushing', key, 'with a value of', counters[key]);
dbQueue.push(async.apply(db.sortedSetIncrBy, 'analytics:' + key, counters[key], today.getTime()));
delete counters[key];
}