Skip to content

Commit 0937f6d

Browse files
committed
Tweaks logging
1 parent e3e7c99 commit 0937f6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/git/models/repository.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ export class Repository implements Disposable {
692692
// If we've come back into focus and we are dirty, fire the change events
693693

694694
if (this._pendingRepoChange != null) {
695-
Logger.debug(scope, `Firing pending repo changes: ${this._pendingRepoChange.toString(true)}`);
695+
Logger.debug(scope, `Firing pending repo ${this._pendingRepoChange.toString(true)}`);
696696
this._fireChangeDebounced?.();
697697
}
698698

@@ -878,7 +878,7 @@ export class Repository implements Disposable {
878878
this.providerService.onRepositoryChanged(this, this._pendingRepoChange);
879879

880880
if (this._suspended) {
881-
Logger.debug(scope, `SUSPENDED: queueing repo changes=${this._pendingRepoChange.toString(true)}`);
881+
Logger.debug(scope, `SUSPENDED: queueing repo ${this._pendingRepoChange.toString(true)}`);
882882
return;
883883
}
884884

@@ -896,7 +896,7 @@ export class Repository implements Disposable {
896896

897897
this._pendingRepoChange = undefined;
898898

899-
Logger.debug(scope, `firing repo changes=${e.toString(true)}`);
899+
Logger.debug(scope, `firing repo ${e.toString(true)}`);
900900
try {
901901
this._onDidChange.fire(e);
902902
} finally {

0 commit comments

Comments
 (0)