add release capture log message

This commit is contained in:
Ferdinand Schober
2024-10-08 19:37:40 +02:00
parent b6c2cfe8a6
commit 0277b6b4d3

View File

@@ -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?;
}
}