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 9c28bf7 commit 909e55fCopy full SHA for 909e55f
extensions/git/src/repository.ts
@@ -2269,14 +2269,17 @@ export class Repository implements Disposable {
2269
const autorefresh = config.get<boolean>('autorefresh');
2270
2271
if (!autorefresh) {
2272
+ this.logger.trace('Skip running git status because autorefresh setting is disabled.');
2273
return;
2274
}
2275
2276
if (this.isRepositoryHuge) {
2277
+ this.logger.trace('Skip running git status because repository is huge.');
2278
2279
2280
2281
if (!this.operations.isIdle()) {
2282
+ this.logger.trace('Skip running git status because an operation is running.');
2283
2284
2285
0 commit comments