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.
This commit is contained in:
Lorenz Leutgeb 2026-03-23 15:47:32 +01:00 committed by Fintan Halpenny
parent 14493cbfbf
commit b5dc3486db
1 changed files with 0 additions and 6 deletions

View File

@ -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");