quiet dotenv log message (#2239)

Co-authored-by: Scott Densmore <scottdensmore@mac.com>
This commit is contained in:
Mot 2025-06-27 19:03:20 -07:00 committed by GitHub
parent 2e20effb43
commit ad7839ea4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 10 deletions

View file

@ -297,6 +297,6 @@ function findEnvFile(startDir: string): string | null {
export function loadEnvironment(): void {
const envFilePath = findEnvFile(process.cwd());
if (envFilePath) {
dotenv.config({ path: envFilePath });
dotenv.config({ path: envFilePath, quiet: true });
}
}