chore(connlib): log when we are updating DNS servers (#6192)

This commit is contained in:
Thomas Eizinger
2024-08-07 05:27:35 +01:00
committed by GitHub
parent a81f5128e5
commit dda6adecf2

View File

@@ -781,6 +781,8 @@ impl ClientState {
}
fn set_dns_mapping(&mut self, new_mapping: BiMap<IpAddr, DnsServer>) {
tracing::debug!(mapping = ?new_mapping, "Updating DNS servers");
self.dns_mapping = new_mapping;
self.mangled_dns_queries.clear();
}