Remove .gitignore logging from startup. (#1323)

This commit is contained in:
N. Taylor Mullen 2025-06-23 19:12:42 +01:00 committed by GitHub
parent 631591ce79
commit 4b7307accb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 6 deletions

View File

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