Skip to content

Commit b10fa25

Browse files
committed
Revert "symcheck: Format JSON output to make it more readable"
This reverts commit b9ceaa3.
1 parent b9ceaa3 commit b10fa25

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/symbol-check/src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,10 @@ fn exec_cargo_with_args(args: &[&str]) -> Vec<PathBuf> {
6060

6161
for line in reader.lines() {
6262
let line = line.expect("failed to read line");
63+
println!("{line}"); // tee to stdout
6364

6465
// Select only steps that create files
6566
let j: Value = serde_json::from_str(&line).expect("failed to deserialize");
66-
println!("{j:#?}"); // tee to stdout
67-
6867
if j["reason"] != "compiler-artifact" {
6968
continue;
7069
}

0 commit comments

Comments
 (0)