Skip to content

Commit aaeafe0

Browse files
committed
Rework Diagnosing SourceKit-LSP message
1 parent 532d757 commit aaeafe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/captureDiagnostics.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ async function sourcekitDiagnose(ctx: WorkspaceContext, dir: string) {
166166
location: vscode.ProgressLocation.Notification,
167167
},
168168
async progress => {
169-
progress.report({ message: "Generating Diagnostic Bundle..." });
169+
progress.report({ message: "Diagnosing SourceKit-LSP..." });
170170
const writableStream = progressUpdatingWritable(percent =>
171-
progress.report({ message: `Generating Diagnostic Bundle: ${percent}%` })
171+
progress.report({ message: `Diagnosing SourceKit-LSP: ${percent}%` })
172172
);
173173

174174
await execFileStreamOutput(

0 commit comments

Comments
 (0)