remove duplicate log

This commit is contained in:
Ferdinand Schober
2024-07-14 14:18:57 +02:00
parent 970575de8d
commit 8fa4ea530a

View File

@@ -25,7 +25,6 @@ impl DnsResolver {
}
pub(crate) async fn resolve(&self, host: &str) -> Result<Vec<IpAddr>, Box<dyn Error>> {
log::info!("resolving {host} ...");
let response = self.resolver.lookup_ip(host).await?;
for ip in response.iter() {
log::info!("{host}: adding ip {ip}");