about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
author许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>2024-12-12 19:23:38 +0800
committer许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>2024-12-12 19:23:38 +0800
commit50fac072815e576ca955b0f53fb52236d2f671f3 (patch)
treed243cf45bd2a37d29303042b1064f74f6f1c376c /src/bootstrap
parent903d2976fdb6ceeb65526b7555d8d1e6f8c02134 (diff)
downloadrust-50fac072815e576ca955b0f53fb52236d2f671f3.tar.gz
rust-50fac072815e576ca955b0f53fb52236d2f671f3.zip
Revert "Rollup merge of #134123 - Zalathar:json-output, r=jieyouxu,clubby789"
This reverts commit c42c248009747366e646a3ad1ce6e8f815ea7db2, reversing
changes made to 0f1b827881d20ba08f72d692ccd3ff97a0e25851.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/core/build_steps/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs
index 93f8091299f..4419b11ac19 100644
--- a/src/bootstrap/src/core/build_steps/compile.rs
+++ b/src/bootstrap/src/core/build_steps/compile.rs
@@ -2261,7 +2261,7 @@ pub fn stream_cargo(
             Ok(msg) => {
                 if builder.config.json_output {
                     // Forward JSON to stdout.
-                    println!("{line}");
+                    eprintln!("{line}");
                 }
                 cb(msg)
             }