From b5dc3486db0805641f8c90a4df5ed012bef7f26f Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Mon, 23 Mar 2026 15:47:32 +0100 Subject: [PATCH] node/wire: Remove `FetchResult` log Logs produced by this log statement are very hard to decipher, remove in favour of other logs in the service. --- crates/radicle-node/src/wire.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/radicle-node/src/wire.rs b/crates/radicle-node/src/wire.rs index 21112d01..f2631c9c 100644 --- a/crates/radicle-node/src/wire.rs +++ b/crates/radicle-node/src/wire.rs @@ -388,12 +388,6 @@ where } fn worker_result(&mut self, task: TaskResult) { - log::debug!( - target: "wire", - "Received fetch result from worker for stream {}, remote {}: {:?}", - task.stream, task.remote, task.result - ); - let nid = task.remote; let Some((fd, peer)) = self.peers.lookup_mut(&nid) else { log::debug!(target: "wire", "Peer {nid} not found; ignoring fetch result");