Subject: | debug message not if debug'd |
line 1063 of Net/DNS/Resolver/Base.pm :
print ";; remote addr struc: ".unpack("H*", $dst_sockaddr)."\n";
should be conditionally printed only when debug is enabled. The correct code should be (including its preceeding conditionally printed line):
if $self->{'debug'} {
print ";; bgsend($ns_address : $dstport)\n"
print ";; remote addr struc: ".unpack("H*", $dst_sockaddr)."\n";
}