diff --git a/src/categories/update.js b/src/categories/update.js index ec1c2edb1e..d4be83edb8 100644 --- a/src/categories/update.js +++ b/src/categories/update.js @@ -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; };