From 2ceb39553e0e3f3c898c00c1a035bd56d62be14c Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Mon, 6 Feb 2023 21:44:25 +0100 Subject: [PATCH] node: Remove redundant log --- radicle-node/src/control.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/radicle-node/src/control.rs b/radicle-node/src/control.rs index 382c02e3..beecd5c9 100644 --- a/radicle-node/src/control.rs +++ b/radicle-node/src/control.rs @@ -34,8 +34,6 @@ pub fn listen for incoming in listener.incoming() { match incoming { Ok(mut stream) => { - log::debug!(target: "control", "Accepted new client on control socket.."); - if let Err(e) = command(&stream, &mut handle) { if let CommandError::Shutdown = e { log::debug!(target: "control", "Shutdown requested..");