From b3744d4b9935a2a902950826a8aa9ca8dbeaf4e1 Mon Sep 17 00:00:00 2001 From: Ken Bynell Date: Thu, 9 May 2024 18:01:47 -0500 Subject: [PATCH] remove unnecessary logging --- support_files/conversion_junction.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/support_files/conversion_junction.js b/support_files/conversion_junction.js index b15cf72b..7e7767c1 100644 --- a/support_files/conversion_junction.js +++ b/support_files/conversion_junction.js @@ -40,7 +40,6 @@ function getDynamicPath(filePath) { // this should be refactored in next release function convert(convertPath, targetExt = path.extname(getDynamicPath(convertPath))) { const { excludedFiles } = getConfig(); - console.log(convertPath); //convertPath = convertPath.toString(); //bg3mh_logger.info(`Excluded Files: ${JSON.stringify(excludedFiles, null, 2)}`); @@ -59,7 +58,6 @@ function convert(convertPath, targetExt = path.extname(getDynamicPath(convertPat } } else if (fs.statSync(convertPath).isDirectory()) { - console.log("finding %s files in %s directory", targetExt, convertPath) convert(FIND_FILES(convertPath, targetExt)); } else if (fs.statSync(convertPath).isFile()) {