Bläddra i källkod

Avoids logging uris

main
Eric Amodio 3 år sedan
förälder
incheckning
df84af27d2
1 ändrade filer med 6 tillägg och 1 borttagningar
  1. +6
    -1
      src/git/gitService.ts

+ 6
- 1
src/git/gitService.ts Visa fil

@ -695,7 +695,12 @@ export class GitService implements Disposable {
}
}
@log()
@log({
args: {
0: (repoPath: string) => repoPath,
1: (uris: Uri[]) => `${uris.length}`,
},
})
async excludeIgnoredUris(repoPath: string, uris: Uri[]): Promise<Uri[]> {
const paths = new Map<string, Uri>(uris.map(u => [Strings.normalizePath(u.fsPath), u]));

Laddar…
Avbryt
Spara