diff --git a/src/capture.rs b/src/capture.rs index 9e37d62..3a9e04e 100644 --- a/src/capture.rs +++ b/src/capture.rs @@ -234,6 +234,7 @@ async fn handle_capture_event( // we release the capture if let Some(pos) = server.get_incoming_pos(handle) { if server.client_manager.client_at(pos).is_none() { + log::info!("releasing capture: no active client at this position"); capture.release().await?; } }