From e897be76187a41058bd0bc699eaf301eb242eaba Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Fri, 27 Dec 2024 10:58:45 +0200 Subject: [PATCH] Update path.rs Co-authored-by: Martin Thomson Signed-off-by: Lars Eggert --- neqo-transport/src/path.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neqo-transport/src/path.rs b/neqo-transport/src/path.rs index 8328f55bd8..3518d50af2 100644 --- a/neqo-transport/src/path.rs +++ b/neqo-transport/src/path.rs @@ -539,8 +539,8 @@ impl Path { let iface_mtu = match mtu::interface_and_mtu(remote.ip()) { Ok((name, mtu)) => { qdebug!( - "Outbound interface {name} for destination {} has MTU {mtu}", - remote.ip() + "Outbound interface {name} for destination {ip} has MTU {mtu}", + ip = remote.ip() ); stats.pmtud_iface_mtu = mtu; Some(mtu)