Remove unnecessary console logs

This commit is contained in:
Benjamin Toby
2024-10-16 08:34:18 +01:00
parent 285568deb2
commit ed5248a43f
3 changed files with 1 additions and 11 deletions
-4
View File
@@ -24,8 +24,6 @@ async function watchFolders({ folders, options }) {
}
const dirPath = typeof dir == "string" ? dir : dir.path;
console.log(`Handling dir ${dirPath}`);
if (
(typeof dir == "string" && !fs.existsSync(dirPath)) ||
(typeof dir == "object" &&
@@ -78,8 +76,6 @@ async function watchFolders({ folders, options }) {
}
}
console.log(`Watching dir ${dirPath}`);
if (typeof dir == "string") {
sync({ dirPath, dirs, options });