From 18ab73cc1dae819faa7b01debd7a89133afed9ac Mon Sep 17 00:00:00 2001 From: Arvind Ranasaria Date: Fri, 6 Dec 2019 14:16:38 -0800 Subject: [PATCH] remove redundan console.warn messages (#8593) --- .../resource-deployment/src/ui/resourceTypePickerDialog.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/extensions/resource-deployment/src/ui/resourceTypePickerDialog.ts b/extensions/resource-deployment/src/ui/resourceTypePickerDialog.ts index 0ff3892d89..fa21865265 100644 --- a/extensions/resource-deployment/src/ui/resourceTypePickerDialog.ts +++ b/extensions/resource-deployment/src/ui/resourceTypePickerDialog.ts @@ -229,9 +229,6 @@ export class ResourceTypePickerDialog extends DialogBase { })); if (tool.isNotInstalled && !tool.autoInstallSupported) { messages.push(localize('deploymentDialog.ToolInformation', "'{0}' was not discovered and automated installation is not supported. Kindly install it manually or if installed make sure it is started and discoverable. Once done please restart Azure Data Studio. See [{1}] .", tool.displayName, tool.homePage)); - if (tool.statusDescription !== undefined) { - console.warn(localize('deploymentDialog.DetailToolStatusDescription', "Additional status information for tool: '{0}' [ {1} ]. {2}", tool.name, tool.homePage, tool.statusDescription)); - } } else if (tool.isInstalled && toolRequirement.version && !tool.isSameOrNewerThan(toolRequirement.version)) { minVersionCheckFailed = true; messages.push(localize('deploymentDialog.ToolDoesNotMeetVersionRequirement', "'{0}' [ {1} ] does not meet the minimum version requirement, please uninstall it and restart Azure Data Studio.", tool.displayName, tool.homePage));