diff --git a/extensions/azuremonitor/src/azuremonitorServer.ts b/extensions/azuremonitor/src/azuremonitorServer.ts index 4ec0f79506..7e2c04dae8 100644 --- a/extensions/azuremonitor/src/azuremonitorServer.ts +++ b/extensions/azuremonitor/src/azuremonitorServer.ts @@ -118,7 +118,9 @@ function generateHandleServerProviderEvent() { } 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; default: console.error(`Unknown event from Server Provider ${e}`); diff --git a/extensions/kusto/src/kustoServer.ts b/extensions/kusto/src/kustoServer.ts index 11855b6f76..d249ccb867 100644 --- a/extensions/kusto/src/kustoServer.ts +++ b/extensions/kusto/src/kustoServer.ts @@ -116,7 +116,9 @@ function generateHandleServerProviderEvent() { } 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; default: console.error(`Unknown event from Server Provider ${e}`); diff --git a/extensions/mssql/src/sqlToolsServer.ts b/extensions/mssql/src/sqlToolsServer.ts index ad8cd0d794..461365ac55 100644 --- a/extensions/mssql/src/sqlToolsServer.ts +++ b/extensions/mssql/src/sqlToolsServer.ts @@ -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]));