From 1ba186aa635bb34793a2b9ff92a82a8d6960b65a Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 9 Jun 2021 14:21:15 +1000 Subject: [PATCH] Make log message a proper statement "Listening on" is only half a sentence. --- swap/src/protocol/alice/event_loop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/protocol/alice/event_loop.rs b/swap/src/protocol/alice/event_loop.rs index 832f658c..49f32d73 100644 --- a/swap/src/protocol/alice/event_loop.rs +++ b/swap/src/protocol/alice/event_loop.rs @@ -335,7 +335,7 @@ where } } SwarmEvent::NewListenAddr(address) => { - tracing::info!(%address, "Listening on"); + tracing::info!(%address, "New listen address detected"); } _ => {} }