mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
Previously, verbose fetch logging would be enabled when vm.log.level was set to debug or verbose. This created an unexpected coupling between compiler/transpiler logging levels and runtime fetch verbosity. Now, verbose fetch logging is only enabled via explicit opt-in: 1. BUN_CONFIG_VERBOSE_FETCH environment variable 2. explicit `verbose: true` or `verbose: "curl"` option in fetch options This fixes #26724 where users experienced unexpected [fetch] verbose logs during `bun test` when using testcontainers/dockerode. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>