From 8c46b2eb69d407696b57e2658c84a82da8915189 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Wed, 23 Jul 2025 00:33:00 +0200 Subject: [PATCH] dotenv: disable log of what it has loaded which was added in 16.6.0 https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md#1660-2025-06-26 --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 9d710b8..ac296c7 100644 --- a/src/config.js +++ b/src/config.js @@ -1,7 +1,7 @@ import * as dotenv from 'dotenv'; import { dataDir } from './util.js'; -dotenv.config({ path: 'data/config.env' }); // loads env vars from file - will not set vars that are already set, i.e., can overwrite values from file by prefixing, e.g., VAR=VAL node ... +dotenv.config({ path: 'data/config.env', quiet: true }); // loads env vars from file - will not set vars that are already set, i.e., can overwrite values from file by prefixing, e.g., VAR=VAL node ... // Options - also see table in README.md export const cfg = {