Skip to content

Commit

Permalink
remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
khbsd committed May 9, 2024
1 parent f6c4832 commit b3744d4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions support_files/conversion_junction.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)}`);
Expand All @@ -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()) {
Expand Down

0 comments on commit b3744d4

Please sign in to comment.