summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/gitIgnoreParser.ts
diff options
context:
space:
mode:
authorN. Taylor Mullen <[email protected]>2025-06-23 19:12:42 +0100
committerGitHub <[email protected]>2025-06-23 11:12:42 -0700
commit4b7307accb7624536e837677713f78f876f70900 (patch)
tree2f9a1edcfdd1700fbef31df3e801534c4e5ab8ff /packages/core/src/utils/gitIgnoreParser.ts
parent631591ce79c0b2fedb3cc6c2e30599e7c42ab88f (diff)
Remove .gitignore logging from startup. (#1323)
Diffstat (limited to 'packages/core/src/utils/gitIgnoreParser.ts')
-rw-r--r--packages/core/src/utils/gitIgnoreParser.ts6
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);
}