chore: add small change to trigger risk-free backport (#160795)

## Summary
Adding a small change that can be safely backported, to test
auto-approval workflows
This commit is contained in:
Alex Szabo 2023-06-28 19:31:51 +02:00 committed by GitHub
parent 870d92b142
commit 8255e8a4d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);