about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-09-15 22:09:52 +0200
committerGitHub <noreply@github.com>2025-09-15 22:09:52 +0200
commit8f2b6029f5eacfc2158877bf021ebb738fa7453f (patch)
treeca7deaf9eb6f0be15eea8008cbeb82420de1532c /src
parentcb9f476314ebe5bca6b389db2cbf15a21fe23d4b (diff)
parent8265748da82be9909909930b191ead719cc760eb (diff)
downloadrust-8f2b6029f5eacfc2158877bf021ebb738fa7453f.tar.gz
rust-8f2b6029f5eacfc2158877bf021ebb738fa7453f.zip
Rollup merge of #146576 - ognevny:opt-dist-collector-logs, r=Kobzol
opt-dist: don't set `RUST_LOG=collector=debug`

see https://rust-lang.zulipchat.com/#narrow/channel/122651-general/topic/opt-dist.3A.20do.20not.20set.20RUST_LOG.3Dcollector.3Ddebug.20forcefully

r? Kobzol
Diffstat (limited to 'src')
-rw-r--r--src/tools/opt-dist/src/training.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/opt-dist/src/training.rs b/src/tools/opt-dist/src/training.rs
index 4f9352d11b1..b3e95e087e3 100644
--- a/src/tools/opt-dist/src/training.rs
+++ b/src/tools/opt-dist/src/training.rs
@@ -39,7 +39,6 @@ fn init_compiler_benchmarks(
         "--exact-match",
         crates.join(",").as_str(),
     ])
-    .env("RUST_LOG", "collector=debug")
     .env("RUSTC", env.rustc_stage_0().as_str())
     .env("RUSTC_BOOTSTRAP", "1")
     .workdir(&env.rustc_perf_dir());