diff --git a/src/git/gitService.ts b/src/git/gitService.ts index 5442826..bca7c24 100644 --- a/src/git/gitService.ts +++ b/src/git/gitService.ts @@ -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 { const paths = new Map(uris.map(u => [Strings.normalizePath(u.fsPath), u]));