mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
Remove console.log
This commit is contained in:
parent
65eda4b033
commit
acf6bba6e3
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ Meteor.startup(function () {
|
|||
collection.find({'inactive': {$ne : true}}).forEach(document => {
|
||||
updatedDocuments += updateScore({collection, item: document});
|
||||
});
|
||||
console.log(`Updated ${updatedDocuments} active documents in collection ${collection.options.collectionName}`)
|
||||
// console.log(`Updated ${updatedDocuments} active documents in collection ${collection.options.collectionName}`)
|
||||
|
||||
}, scoreInterval * 1000);
|
||||
|
||||
|
@ -31,7 +31,7 @@ Meteor.startup(function () {
|
|||
updatedDocuments += updateScore({collection, item: document});
|
||||
});
|
||||
|
||||
console.log(`Updated ${updatedDocuments} inactive documents in collection ${collection.options.collectionName}`)
|
||||
// console.log(`Updated ${updatedDocuments} inactive documents in collection ${collection.options.collectionName}`)
|
||||
|
||||
}, 3600 * 1000);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue