chore(connlib): downgrade log-level for unchanged TUN config (#7106)

This is otherwise really noise in debug output and doesn't offer much.
This commit is contained in:
Thomas Eizinger
2024-10-22 08:51:54 +11:00
committed by GitHub
parent 2f712d2651
commit fa13d11013

View File

@@ -1076,7 +1076,7 @@ impl ClientState {
fn maybe_update_tun_config(&mut self, new_tun_config: TunConfig) {
if Some(&new_tun_config) == self.tun_config.as_ref() {
tracing::debug!(current = ?self.tun_config, "TUN device configuration unchanged");
tracing::trace!(current = ?self.tun_config, "TUN device configuration unchanged");
return;
}