This commit is contained in:
Alan Ren
2022-09-29 20:58:11 -07:00
committed by GitHub
parent 337cadaf95
commit 98320584a2
3 changed files with 9 additions and 3 deletions

View File

@@ -138,7 +138,9 @@ function handleServerProviderEvent(e: string, ...args: any[]): void {
}
break;
case Events.DOWNLOAD_END:
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Done installing {0}", Constants.serviceName));
// Start a new line to end the dots from the DOWNLOAD_PROGRESS event.
outputChannel.appendLine('');
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Downloaded {0}", Constants.serviceName));
break;
case Events.ENTRY_EXTRACTED:
outputChannel.appendLine(localize('entryExtractedChannelMsg', "Extracted {0} ({1}/{2})", args[0], args[1], args[2]));