Skip to content

Commit 47fa207

Browse files
committed
switch log level for checkDirWatchable to traceVerbose
1 parent 7aa661c commit 47fa207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/pythonEnvironments/base/locators/lowLevel/fsWatchingLocator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function checkDirWatchable(dirname: string): DirUnwatchableReason {
3232
names = fs.readdirSync(dirname);
3333
} catch (err) {
3434
const exception = err as NodeJS.ErrnoException;
35-
traceWarn('Reading directory failed', exception);
35+
traceVerbose('Reading directory failed', exception);
3636
if (exception.code === 'ENOENT') {
3737
// Treat a missing directory as unwatchable since it can lead to CPU load issues:
3838
// https://github.com/microsoft/vscode-python/issues/18459

0 commit comments

Comments
 (0)