Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(NA): include quiet option on CI
Browse files Browse the repository at this point in the history
mistic committed Jun 14, 2023

Verified

This commit was signed with the committer’s verified signature.
mistic Tiago Costa
1 parent b36c660 commit 6b81e56
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
@@ -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 ')) {

0 comments on commit 6b81e56

Please sign in to comment.