Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 9a298c1

Browse files
committed
Use message 'indexing' as the default instead of 'diagnostics'
1 parent 1ca9449 commit 9a298c1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/actions/progress.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl<O: Output> BuildProgressNotifier<O> {
7070
pub fn new(out: O) -> BuildProgressNotifier<O> {
7171
BuildProgressNotifier {
7272
out,
73-
progress_params: new_progress_params("Build".into()),
73+
progress_params: new_progress_params("Building".into()),
7474
}
7575
}
7676
}
@@ -108,7 +108,10 @@ impl<O: Output> BuildDiagnosticsNotifier<O> {
108108
pub fn new(out: O) -> BuildDiagnosticsNotifier<O> {
109109
BuildDiagnosticsNotifier {
110110
out,
111-
progress_params: new_progress_params("Diagnostics".into()),
111+
// We emit diagnostics then index, since emitting diagnostics is really
112+
// quick and always has a message, "indexing" is usually a more useful
113+
// title.
114+
progress_params: new_progress_params("Indexing".into()),
112115
}
113116
}
114117
}

0 commit comments

Comments
 (0)