diff --git a/tools/fs/safe-watcher.ts b/tools/fs/safe-watcher.ts index 6e0d222d3f..57ce310b22 100644 --- a/tools/fs/safe-watcher.ts +++ b/tools/fs/safe-watcher.ts @@ -307,7 +307,6 @@ async function ensureWatchRoot(dirPath: string): Promise { // Only disable native watching for critical errors (like ENOSPC). // @ts-ignore if (err.code === "ENOSPC" || err.errno === require("constants").ENOSPC) { - console.log('fallbackToPolling'); fallbackToPolling(); } watchRoots.delete(dirPath);