Skip to content

Commit 893b44f

Browse files
authored
Trace warning is to chatty (#14763)
1 parent 2b0ee45 commit 893b44f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/common/platform/fileSystemWatcher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import * as chokidar from 'chokidar';
77
import * as path from 'path';
88
import { RelativePattern, workspace } from 'vscode';
9-
import { traceError, traceVerbose, traceWarning } from '../logger';
9+
import { traceError, traceVerbose } from '../logger';
1010
import { DisposableRegistry } from '../syncDisposableRegistry';
1111
import { IDisposable } from '../types';
1212
import { normCasePath } from './fs-paths';
@@ -124,7 +124,7 @@ function watchLocationUsingChokidar(
124124
traceError(`Inotify limit reached (ENOSPC) for ${baseDir} with pattern ${pattern}`);
125125
await stopWatcher();
126126
} else {
127-
traceWarning(error.toString());
127+
traceVerbose(error.toString());
128128
}
129129
}
130130
});

0 commit comments

Comments
 (0)