diff options
| author | N. Taylor Mullen <[email protected]> | 2025-06-23 19:12:42 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-23 11:12:42 -0700 |
| commit | 4b7307accb7624536e837677713f78f876f70900 (patch) | |
| tree | 2f9a1edcfdd1700fbef31df3e801534c4e5ab8ff /packages/core/src/utils/gitIgnoreParser.ts | |
| parent | 631591ce79c0b2fedb3cc6c2e30599e7c42ab88f (diff) | |
Remove .gitignore logging from startup. (#1323)
Diffstat (limited to 'packages/core/src/utils/gitIgnoreParser.ts')
| -rw-r--r-- | packages/core/src/utils/gitIgnoreParser.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/core/src/utils/gitIgnoreParser.ts b/packages/core/src/utils/gitIgnoreParser.ts index caa11f8b..37041272 100644 --- a/packages/core/src/utils/gitIgnoreParser.ts +++ b/packages/core/src/utils/gitIgnoreParser.ts @@ -48,12 +48,6 @@ export class GitIgnoreParser implements GitIgnoreFilter { .split('\n') .map((p) => p.trim()) .filter((p) => p !== '' && !p.startsWith('#')); - if (patterns.length > 0) { - // Log the number of patterns loaded on STDERR so it doesn't clutter the output on STDOUT - console.error( - `Loaded ${patterns.length} patterns from ${patternsFilePath}`, - ); - } this.addPatterns(patterns); } |
