From 186becc9c3df1a8d34de64a6aef688448904fcb2 Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 5 Mar 2018 15:53:55 -0800 Subject: [PATCH] Change label when deleting accounts --- src/commands/deleteCosmosDBAccount.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/deleteCosmosDBAccount.ts b/src/commands/deleteCosmosDBAccount.ts index 9973993..491bed8 100644 --- a/src/commands/deleteCosmosDBAccount.ts +++ b/src/commands/deleteCosmosDBAccount.ts @@ -19,10 +19,10 @@ export async function deleteCosmosDBAccount(node: IAzureNode): Promise { const resourceGroup: string = azureUtils.getResourceGroupFromId(node.treeItem.id); const accountName: string = azureUtils.getAccountNameFromId(node.treeItem.id); const output = util.getOutputChannel(); - output.appendLine(`Deleting account ${accountName}`); + output.appendLine(`Deleting account "${accountName}"...`); output.show(); await docDBClient.databaseAccounts.deleteMethod(resourceGroup, accountName); - output.appendLine(`Successfully deleted account ${accountName}`); + output.appendLine(`Successfully deleted account "${accountName}"`); output.show(); } else { throw new UserCancelledError();