From a6090735bc57769082a865896a7d6b0210ef555c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 19 Jan 2023 20:22:26 -0500 Subject: [PATCH] remove console.log --- src/categories/update.js | 1 - 1 file changed, 1 deletion(-) 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; };