We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa661c commit 47fa207Copy full SHA for 47fa207
src/client/pythonEnvironments/base/locators/lowLevel/fsWatchingLocator.ts
@@ -32,7 +32,7 @@ function checkDirWatchable(dirname: string): DirUnwatchableReason {
32
names = fs.readdirSync(dirname);
33
} catch (err) {
34
const exception = err as NodeJS.ErrnoException;
35
- traceWarn('Reading directory failed', exception);
+ traceVerbose('Reading directory failed', exception);
36
if (exception.code === 'ENOENT') {
37
// Treat a missing directory as unwatchable since it can lead to CPU load issues:
38
// https://github.com/microsoft/vscode-python/issues/18459
0 commit comments