dotenvx run --quiet

Use `--quiet` to suppress all output (except errors).

$ echo "HELLO=production" > .env.production
echo "console.log('Hello ' + process.env.HELLO)" > index.js

dotenvx run -f .env.production --quiet -- node index.js
Hello production

You can also set DOTENV_CONFIG_QUIET=true.

DOTENV_CONFIG_QUIET=true dotenvx run -f .env.production -- node index.js
Hello production

log levels