We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e8e68 commit b9ceaa3Copy full SHA for b9ceaa3
crates/symbol-check/src/main.rs
@@ -60,10 +60,11 @@ fn exec_cargo_with_args(args: &[&str]) -> Vec<PathBuf> {
60
61
for line in reader.lines() {
62
let line = line.expect("failed to read line");
63
- println!("{line}"); // tee to stdout
64
65
// Select only steps that create files
66
let j: Value = serde_json::from_str(&line).expect("failed to deserialize");
+ println!("{j:#?}"); // tee to stdout
67
+
68
if j["reason"] != "compiler-artifact" {
69
continue;
70
}
0 commit comments