Skip to content

Commit 3c75347

Browse files
committed
fixed traces
1 parent 50b665e commit 3c75347

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/DataSource/Disable-AzureBackupProtection .cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ public override void ExecuteCmdlet()
6565
var disbaleAzureBackupProtection = AzureBackupClient.DataSource.DisableProtectionAsync(GetCustomRequestHeaders(), Item.ContainerUniqueName, Item.Type, Item.DataSourceId, input, CmdletCancellationToken).Result;
6666

6767
WriteVerbose("Received disable azure backup protection response");
68-
WriteVerbose("Converting response");
6968
jobId = disbaleAzureBackupProtection.OperationId;
7069
this.WriteObject(jobId);
7170
});

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/DataSource/Enable-AzureBackupProtection .cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ public override void ExecuteCmdlet()
7373
var enableAzureBackupProtection = AzureBackupClient.DataSource.EnableProtectionAsync(GetCustomRequestHeaders(), input, CmdletCancellationToken).Result;
7474

7575
WriteVerbose("Received enable azure backup protection response");
76-
WriteVerbose("Received response");
7776
jobId = enableAzureBackupProtection.OperationId;
7877
this.WriteObject(jobId);
7978
});

src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/DataSource/GetAzureBackupItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public override void ExecuteCmdlet()
7575
azureBackupPOObjects = azureBackupPOListResponse.ProtectableObject.Objects.Where(x => x.ContainerName.Equals(Container.ContainerUniqueName, System.StringComparison.InvariantCultureIgnoreCase)).ToList();
7676
}
7777

78-
WriteVerbose("Received response");
78+
WriteVerbose("Received azure backup item response");
7979
WriteAzureBackupItem(azureBackupDatasourceObjects, azureBackupPOObjects, Container);
8080
});
8181
}

0 commit comments

Comments
 (0)