node: Remove redundant log

This commit is contained in:
Alexis Sellier 2023-02-06 21:44:25 +01:00
parent 7d588fc7ab
commit 2ceb39553e
No known key found for this signature in database
1 changed files with 0 additions and 2 deletions

View File

@ -34,8 +34,6 @@ pub fn listen<H: Handle<Error = runtime::HandleError, FetchResult = FetchResult>
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..");