From dadcd5bf0d86850a9c8fb755b48f1a10e690e353 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Wed, 28 Jun 2023 15:45:49 -0400 Subject: [PATCH] [8.9] chore: add small change to trigger risk-free backport (#160795) (#160806) # Backport This will backport the following commits from `main` to `8.9`: - [chore: add small change to trigger risk-free backport (#160795)](https://github.com/elastic/kibana/pull/160795) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Alex Szabo --- 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 4088b6d7b0abe..b8909f63d63d0 100644 --- a/packages/kbn-bazel-runner/src/bazel_runner.js +++ b/packages/kbn-bazel-runner/src/bazel_runner.js @@ -113,7 +113,7 @@ async function runBazelRunner(runner, args, options = undefined) { ]); 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 + // 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 ')) { console.log(options?.logPrefix ? `${options.logPrefix} ${line}` : line);