remove console.log

This commit is contained in:
Barış Soner Uşaklı
2023-01-19 20:22:26 -05:00
parent bc3637964c
commit a6090735bc

View File

@@ -11,7 +11,6 @@ const cache = require('../cache');
module.exports = function (Categories) {
Categories.update = async function (modified) {
const cids = Object.keys(modified);
console.log('updating', cids);
await Promise.all(cids.map(cid => updateCategory(cid, modified[cid])));
return cids;
};