From 2496c817ce7121cb14837f980ce8151658783c25 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Tue, 9 Jun 2020 17:58:39 +0300 Subject: [PATCH] Remove unintended 'console.log' --- resources/utils.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/resources/utils.js b/resources/utils.js index 85e2f28bfe7..d48a02a3c20 100644 --- a/resources/utils.js +++ b/resources/utils.js @@ -49,13 +49,6 @@ function rmdirRecursive(dirPath) { } function readdirRecursive(dirPath, opts = {}) { - console.log('-------'); - const result = readdirRecursive2(dirPath, opts); - console.log('+++++++'); - return result; -} - -function readdirRecursive2(dirPath, opts = {}) { const { ignoreDir } = opts; const result = []; for (const dirent of fs.readdirSync(dirPath, { withFileTypes: true })) {