Ver código fonte

Avoids logging uris

main
Eric Amodio 3 anos atrás
pai
commit
df84af27d2
1 arquivos alterados com 6 adições e 1 exclusões
  1. +6
    -1
      src/git/gitService.ts

+ 6
- 1
src/git/gitService.ts Ver arquivo

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

Carregando…
Cancelar
Salvar