From a542a0cf0f36f5f619392e55dd7afd50c71b2d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20RIBEAU?= Date: Mon, 13 Nov 2023 12:40:02 +0100 Subject: [PATCH] fix(dcutr): fix small typo in dcutr log --- protocols/dcutr/src/behaviour.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/dcutr/src/behaviour.rs b/protocols/dcutr/src/behaviour.rs index b644d90b6f2..85ac9cbf00b 100644 --- a/protocols/dcutr/src/behaviour.rs +++ b/protocols/dcutr/src/behaviour.rs @@ -300,7 +300,7 @@ impl NetworkBehaviour for Behaviour { // Maybe treat these as transient and retry? } Either::Left(handler::relayed::Event::OutboundConnectNegotiated { remote_addrs }) => { - tracing::debug!(target=%event_source, addresses=?remote_addrs, "Attempting to hole-punch as dialer"); + tracing::debug!(target=%event_source, addresses=?remote_addrs, "Attempting to hole-punch as listener"); let opts = DialOpts::peer_id(event_source) .condition(dial_opts::PeerCondition::Always)