From 6b0b3c1d584d0551ce724c2eba23f66d3476c539 Mon Sep 17 00:00:00 2001 From: Ryan Bolger Date: Fri, 2 Aug 2024 18:35:14 -0700 Subject: [PATCH] minor logging fix for Active24 --- Posh-ACME/Plugins/Active24.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Posh-ACME/Plugins/Active24.ps1 b/Posh-ACME/Plugins/Active24.ps1 index bfd34ad7..6d17df3f 100644 --- a/Posh-ACME/Plugins/Active24.ps1 +++ b/Posh-ACME/Plugins/Active24.ps1 @@ -25,7 +25,7 @@ function Add-DnsTxt { # get the zone name for our record $zoneName = Find-A24Zone $RecordName $restParams if ([String]::IsNullOrWhiteSpace($zoneName)) { - throw "Unable to find zone for $RecordName in account $acctID" + throw "Unable to find zone for $RecordName" } Write-Debug "Found zone $zoneName" @@ -98,7 +98,7 @@ function Remove-DnsTxt { # get the zone name for our record $zoneName = Find-A24Zone $RecordName $restParams if ([String]::IsNullOrWhiteSpace($zoneName)) { - throw "Unable to find zone for $RecordName in account $acctID" + throw "Unable to find zone for $RecordName" } Write-Debug "Found zone $zoneName"