diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-09-16 10:25:44 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-16 10:25:44 +1000 |
| commit | f0e8c2fb6f4cb0bca4f554edf895e2344ef9c74e (patch) | |
| tree | 23253f09b9ac678ce0f63176a645f2b8a566f061 /src/bootstrap/bootstrap.py | |
| parent | cc315a8fba7b8a49019308838df1a92a5e3fb591 (diff) | |
| parent | 29ca09be09a88f359adc7879e2592f36f6c74a64 (diff) | |
| download | rust-f0e8c2fb6f4cb0bca4f554edf895e2344ef9c74e.tar.gz rust-f0e8c2fb6f4cb0bca4f554edf895e2344ef9c74e.zip | |
Rollup merge of #146609 - lolbinarycat:bootstrap-less-verbose-cargo, r=Kobzol
bootstrap: lower verbosity of cargo to one less than bootstrap's the main thing this does is eliminate the "Fresh ..." output when `--verbose` is only passed once. r? `@Kobzol`
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 2ece53eb0cc..41c8ef17f0b 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -1145,7 +1145,8 @@ class RustBuild(object): os.path.join(self.rust_root, "src/bootstrap/Cargo.toml"), "-Zroot-dir=" + self.rust_root, ] - args.extend("--verbose" for _ in range(self.verbose)) + # verbose cargo output is very noisy, so only enable it with -vv + args.extend("--verbose" for _ in range(self.verbose - 1)) if "BOOTSTRAP_TRACING" in env: args.append("--features=tracing") |
