dnsexit2: Delete unnecessary debug messages

This commit is contained in:
Richard Hansen 2024-05-30 04:49:46 -04:00
parent 5b7400ae7d
commit 3c84f7a1b5

View file

@ -4174,12 +4174,7 @@ sub nic_dnsexit2_update {
# The DNSExit API does not support updating multiple hosts at a time.
for my $h (@_) {
if (not defined $config{$h}{'zone'}) {
debug("Zone not defined, setting to default hostname: %s", $h);
$config{$h}{'zone'} = $h
} else {
debug("Zone is: %s", $config{$h}{'zone'});
}
$config{$h}{'zone'} //= $h;
# The IPv4 and IPv6 addresses must be updated together in a single API call.
my %ips;
my @updates;