Skip to content

Commit e2ee3f6

Browse files
committed
Improve message printed when the site starts
The distinction between commits and artifacts is confusing (local compiler versions were actually under artifacts).
1 parent de1090c commit e2ee3f6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

site/src/main.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ async fn main() {
3838
eprintln!("Loading complete but no data identified; exiting.");
3939
std::process::exit(1);
4040
}
41-
eprintln!(
42-
"Loading complete; {} commits and {} artifacts",
43-
commits, artifacts,
44-
);
41+
eprintln!("Loading complete; found {} artifacts", commits + artifacts);
4542
eprintln!(
4643
"View the results in a web browser at 'http://localhost:{port}/compare.html'"
4744
);

0 commit comments

Comments
 (0)