Skip to content

Commit 8f5f486

Browse files
committed
Fixes #3422 removes leftover console.log
1 parent cd7b434 commit 8f5f486

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
99
### Fixed
1010

1111
- Fixes [#3423](https://github.com/gitkraken/vscode-gitlens/issues/3423) - Blame annotations & revision navigation are missing in 15.2.1 when using remote (WSL, SSH, etc) repositories
12+
- Fixes [#3422](https://github.com/gitkraken/vscode-gitlens/issues/3422) - Extra logging
1213
- Fixes cloud patch creation error on azure repos
1314

1415
## [15.2.1] - 2024-07-24

src/trackers/trackedDocument.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -253,12 +253,6 @@ export class TrackedGitDocument implements Disposable {
253253
const updates = this._pendingUpdates;
254254
this._pendingUpdates = undefined;
255255

256-
console.log(
257-
`### ${Logger.timestamp} update (${updates?.reason})`,
258-
this.document.uri.toString(true),
259-
this._disposed || this._uri == null,
260-
);
261-
262256
if (this._disposed || this._uri == null) {
263257
this._tracked = false;
264258

0 commit comments

Comments
 (0)