From ac7b78429c2a985df429eb512cc44d500c73aa47 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9Cmbt1=E2=80=9D?= <mbt1@users.noreply.github.com>
Date: Tue, 19 Dec 2023 14:31:37 +0000
Subject: [PATCH] removed double print statement

---
 CI/Azure-DevOps/CreateSQLVM_azcli.ps1 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/CI/Azure-DevOps/CreateSQLVM_azcli.ps1 b/CI/Azure-DevOps/CreateSQLVM_azcli.ps1
index 10b17d858..cc61a18bd 100644
--- a/CI/Azure-DevOps/CreateSQLVM_azcli.ps1
+++ b/CI/Azure-DevOps/CreateSQLVM_azcli.ps1
@@ -104,7 +104,6 @@ $FQDN = (az network public-ip show --resource-group $ResourceGroupName --name $P
 Log-Output "FQDN: ", $FQDN;
 Log-Output "DONE: Creating PIP $PipName";
 
-Log-Output "START: Creating NSG and Rules $NsgName";
 Log-Output "START: Creating NSG and Rules $NsgName --> nsg create";
 $output = az network nsg create --name $NsgName --resource-group $ResourceGroupName --location $Location | ConvertFrom-Json;
 if (!$output) {