Quellcode durchsuchen

Avoids logging uris

main
Eric Amodio vor 3 Jahren
Ursprung
Commit
df84af27d2
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      src/git/gitService.ts

+ 6
- 1
src/git/gitService.ts Datei anzeigen

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

Laden…
Abbrechen
Speichern