diff --git a/extensions/git/src/model.ts b/extensions/git/src/model.ts index 1546c6a1f90..e17deb419ef 100644 --- a/extensions/git/src/model.ts +++ b/extensions/git/src/model.ts @@ -451,17 +451,13 @@ export class Model { @debounce(1000) private onWorkspaceChange(): void { - console.log('workspace changes!!!'); this.updateWhenIdleAndWait(); } @decorate(throttle) private async updateWhenIdleAndWait(): Promise { - console.log('checking for idleness...'); await this.whenIdle(); - console.log('idle now, lets do it'); await this.update(); - console.log('update done, lets wait 7 seconds'); await new Promise(c => setTimeout(c, 7000)); }