Selaa lähdekoodia

Avoids logging uris

main
Eric Amodio 3 vuotta sitten
vanhempi
commit
df84af27d2
1 muutettua tiedostoa jossa 6 lisäystä ja 1 poistoa
  1. +6
    -1
      src/git/gitService.ts

+ 6
- 1
src/git/gitService.ts Näytä tiedosto

@ -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]));

Ladataan…
Peruuta
Tallenna