Skip to content

Commit

Permalink
minor logging fix for Active24
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Aug 3, 2024
1 parent 2a3e5ce commit 6b0b3c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Posh-ACME/Plugins/Active24.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit 6b0b3c1

Please sign in to comment.