Skip to content

Commit 64752ef

Browse files
Fix typo leading to metrics loss
1 parent 7fc4ba0 commit 64752ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtask/src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ impl Metrics {
8484
eprintln!("\nMeasuring analysis-stats/{}", name);
8585
let output = Command::new("./target/release/rust-analyzer")
8686
.args(&["analysis-stats", "--quiet", "--memory-usage", path])
87-
.stdout(Stdio::inherit())
87+
.stderr(Stdio::inherit())
8888
.output()?;
8989
let output = String::from_utf8(output.stdout)?;
9090
for (metric, value, unit) in parse_metrics(&output) {

0 commit comments

Comments
 (0)