Skip to content

Commit

Permalink
Revert "[8.9] chore(NA): changing a small comment on bazel runner pac…
Browse files Browse the repository at this point in the history
…kage to test run auto approve actions on backport (#160778) (#160781)"

This reverts commit d4f5218.
  • Loading branch information
mistic committed Jun 28, 2023
1 parent 52284a3 commit fe7f1d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kbn-bazel-runner/src/bazel_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fe7f1d8

Please sign in to comment.