From 6b81e56858bc1f58cc6f0c69aef080da66011b6a Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Wed, 14 Jun 2023 19:47:42 +0100 Subject: [PATCH] chore(NA): include quiet option on CI --- packages/kbn-bazel-runner/src/bazel_runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/kbn-bazel-runner/src/bazel_runner.js b/packages/kbn-bazel-runner/src/bazel_runner.js index cc9f2d7c43686..4088b6d7b0abe 100644 --- a/packages/kbn-bazel-runner/src/bazel_runner.js +++ b/packages/kbn-bazel-runner/src/bazel_runner.js @@ -112,7 +112,7 @@ async function runBazelRunner(runner, args, options = undefined) { ]), ]); - if (process.env.CI) { + if (process.env.CI && !options?.quiet) { // on CI it's useful to reduce the logging output, but we still want to see basic info from Bazel so continue to log the INFO: lines from bazel for (const line of buffer) { if (line.startsWith('INFO:') && !line.startsWith('INFO: From ')) {