In different projects we use a js script to create a command which is then executed in the terminal with eval:\ `eval "$(node ../../set_env.mjs)"` Currently we need to override the `console.log` function to prevent undesired log statements when calling `getBranchInfo`. something like: ```js const oldLogger = console.log console.log = function () {} const { isProd } = getBranchInfo(process.env) const isNotGithubWorkflow = !isGithubWorkflow(process.env) console.log = oldLogger process.stdout.write(...) ``` It would be more ergonomic to simply provide a flag for a `noLog` option