chore: downgrade ipc warning (#10205)

This commit is contained in:
Matthias Seitz
2024-08-08 14:50:16 +02:00
committed by GitHub
parent c639648def
commit ea25df7ed3

View File

@ -155,7 +155,8 @@ where
}
}
Some(Err(err)) => {
tracing::warn!("IPC request failed: {:?}", err);
// this can happen if the client closes the connection
tracing::debug!("IPC request failed: {:?}", err);
return Poll::Ready(())
}
None => return Poll::Ready(()),