Skip to content

Commit 0008a65

Browse files
committed
Reduces logging noise
1 parent 7d948b4 commit 0008a65

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/git/gitProviderService.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2435,57 +2435,57 @@ export class GitProviderService implements Disposable {
24352435
return proxy;
24362436
}
24372437

2438-
@log()
2438+
@log({ singleLine: true })
24392439
branches(repoPath: string | Uri): GitSubProviderForRepo<GitBranchesSubProvider> {
24402440
return this.getSubProviderProxy(repoPath, 'branches');
24412441
}
24422442

2443-
@log()
2443+
@log({ singleLine: true })
24442444
commits(repoPath: string | Uri): GitSubProviderForRepo<GitCommitsSubProvider> {
24452445
return this.getSubProviderProxy(repoPath, 'commits');
24462446
}
24472447

2448-
@log()
2448+
@log({ singleLine: true })
24492449
contributors(repoPath: string | Uri): GitSubProviderForRepo<GitContributorsSubProvider> {
24502450
return this.getSubProviderProxy(repoPath, 'contributors');
24512451
}
24522452

2453-
@log()
2453+
@log({ singleLine: true })
24542454
graph(repoPath: string | Uri): GitSubProviderForRepo<GitGraphSubProvider> {
24552455
return this.getSubProviderProxy(repoPath, 'graph');
24562456
}
24572457

2458-
@log()
2458+
@log({ singleLine: true })
24592459
patch(repoPath: string | Uri): GitSubProviderForRepo<GitPatchSubProvider> | undefined {
24602460
return this.getSubProviderProxy(repoPath, 'patch');
24612461
}
24622462

2463-
@log()
2463+
@log({ singleLine: true })
24642464
remotes(repoPath: string | Uri): GitSubProviderForRepo<GitRemotesSubProvider> {
24652465
return this.getSubProviderProxy(repoPath, 'remotes');
24662466
}
24672467

2468-
@log()
2468+
@log({ singleLine: true })
24692469
staging(repoPath: string | Uri): GitSubProviderForRepo<GitStagingSubProvider> | undefined {
24702470
return this.getSubProviderProxy(repoPath, 'staging');
24712471
}
24722472

2473-
@log()
2473+
@log({ singleLine: true })
24742474
stash(repoPath: string | Uri): GitSubProviderForRepo<GitStashSubProvider> | undefined {
24752475
return this.getSubProviderProxy(repoPath, 'stash');
24762476
}
24772477

2478-
@log()
2478+
@log({ singleLine: true })
24792479
status(repoPath: string | Uri): GitSubProviderForRepo<GitStatusSubProvider> {
24802480
return this.getSubProviderProxy(repoPath, 'status');
24812481
}
24822482

2483-
@log()
2483+
@log({ singleLine: true })
24842484
tags(repoPath: string | Uri): GitSubProviderForRepo<GitTagsSubProvider> {
24852485
return this.getSubProviderProxy(repoPath, 'tags');
24862486
}
24872487

2488-
@log()
2488+
@log({ singleLine: true })
24892489
worktrees(repoPath: string | Uri): GitSubProviderForRepo<GitWorktreesSubProvider> | undefined {
24902490
return this.getSubProviderProxy(repoPath, 'worktrees');
24912491
}

0 commit comments

Comments
 (0)