From 0277b6b4d3b66e83191fcfc9601dc7ea16d6b9f1 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Tue, 8 Oct 2024 19:37:40 +0200 Subject: [PATCH] add release capture log message --- src/capture.rs | 1 + 1 file changed, 1 insertion(+) 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?; } }