diff --git a/src/runtime/src/mgmt.rs b/src/runtime/src/mgmt.rs index 79f811d6..c53b0224 100644 --- a/src/runtime/src/mgmt.rs +++ b/src/runtime/src/mgmt.rs @@ -33,6 +33,7 @@ async fn get_logger_buffer() -> LogBufferRef<'static> { async fn handle_connection(stream: &mut TcpStream, pull_id: Rc>) -> Result<(), Error> { Request::read_magic(stream).await?; + info!("received connection"); loop { let req = Request::read_from(stream).await;