From bcc159ea551a54cc5fe24896719ca72b7ba986e5 Mon Sep 17 00:00:00 2001 From: x Date: Thu, 31 Aug 2023 14:14:36 +0200 Subject: [PATCH] channel: minor fix to debug! statement --- src/net/channel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/channel.rs b/src/net/channel.rs index bed2a62a2..252e5b817 100644 --- a/src/net/channel.rs +++ b/src/net/channel.rs @@ -170,7 +170,7 @@ impl Channel { pub async fn send(&self, message: &M) -> Result<()> { debug!( target: "net::channel::send()", "[START] command={} {:?}", - M::NAME, self.address(), + M::NAME, self, ); if *self.stopped.lock().await {