Skip to content

Commit c1f0da3

Browse files
committed
Removes unneeded logging
1 parent 20c41f3 commit c1f0da3

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/git/gitProviderService.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2041,77 +2041,62 @@ export class GitProviderService implements Disposable {
20412041
return proxy;
20422042
}
20432043

2044-
@log({ singleLine: true })
20452044
branches(repoPath: string | Uri): GitSubProviderForRepo<GitBranchesSubProvider> {
20462045
return this.getSubProviderProxy(repoPath, 'branches');
20472046
}
20482047

2049-
@log({ singleLine: true })
20502048
commits(repoPath: string | Uri): GitSubProviderForRepo<GitCommitsSubProvider> {
20512049
return this.getSubProviderProxy(repoPath, 'commits');
20522050
}
20532051

2054-
@log({ singleLine: true })
20552052
config(repoPath: string | Uri): GitSubProviderForRepo<GitConfigSubProvider> {
20562053
return this.getSubProviderProxy(repoPath, 'config');
20572054
}
20582055

2059-
@log({ singleLine: true })
20602056
contributors(repoPath: string | Uri): GitSubProviderForRepo<GitContributorsSubProvider> {
20612057
return this.getSubProviderProxy(repoPath, 'contributors');
20622058
}
20632059

2064-
@log({ singleLine: true })
20652060
diff(repoPath: string | Uri): GitSubProviderForRepo<GitDiffSubProvider> {
20662061
return this.getSubProviderProxy(repoPath, 'diff');
20672062
}
20682063

2069-
@log({ singleLine: true })
20702064
graph(repoPath: string | Uri): GitSubProviderForRepo<GitGraphSubProvider> {
20712065
return this.getSubProviderProxy(repoPath, 'graph');
20722066
}
20732067

2074-
@log({ singleLine: true })
20752068
patch(repoPath: string | Uri): GitSubProviderForRepo<GitPatchSubProvider> | undefined {
20762069
return this.getSubProviderProxy(repoPath, 'patch');
20772070
}
20782071

2079-
@log({ singleLine: true })
20802072
refs(repoPath: string | Uri): GitSubProviderForRepo<GitRefsSubProvider> {
20812073
return this.getSubProviderProxy(repoPath, 'refs');
20822074
}
20832075

2084-
@log({ singleLine: true })
20852076
remotes(repoPath: string | Uri): GitSubProviderForRepo<GitRemotesSubProvider> {
20862077
return this.getSubProviderProxy(repoPath, 'remotes');
20872078
}
20882079

2089-
@log({ singleLine: true })
20902080
revision(repoPath: string | Uri): GitSubProviderForRepo<GitRevisionSubProvider> {
20912081
return this.getSubProviderProxy(repoPath, 'revision');
20922082
}
20932083

2094-
@log({ singleLine: true })
20952084
staging(repoPath: string | Uri): GitSubProviderForRepo<GitStagingSubProvider> | undefined {
20962085
return this.getSubProviderProxy(repoPath, 'staging');
20972086
}
20982087

2099-
@log({ singleLine: true })
21002088
stash(repoPath: string | Uri): GitSubProviderForRepo<GitStashSubProvider> | undefined {
21012089
return this.getSubProviderProxy(repoPath, 'stash');
21022090
}
21032091

2104-
@log({ singleLine: true })
21052092
status(repoPath: string | Uri): GitSubProviderForRepo<GitStatusSubProvider> {
21062093
return this.getSubProviderProxy(repoPath, 'status');
21072094
}
21082095

2109-
@log({ singleLine: true })
21102096
tags(repoPath: string | Uri): GitSubProviderForRepo<GitTagsSubProvider> {
21112097
return this.getSubProviderProxy(repoPath, 'tags');
21122098
}
21132099

2114-
@log({ singleLine: true })
21152100
worktrees(repoPath: string | Uri): GitSubProviderForRepo<GitWorktreesSubProvider> | undefined {
21162101
return this.getSubProviderProxy(repoPath, 'worktrees');
21172102
}

0 commit comments

Comments
 (0)