From 5c7eec68d0a7c2c499ac54ae775b488f997c99eb Mon Sep 17 00:00:00 2001 From: Zomatree Date: Sun, 12 Oct 2025 01:12:08 +0100 Subject: [PATCH] chore: add debug logging to voice ingress --- crates/daemons/voice-ingress/src/api.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/daemons/voice-ingress/src/api.rs b/crates/daemons/voice-ingress/src/api.rs index 9905f548..6efe1679 100644 --- a/crates/daemons/voice-ingress/src/api.rs +++ b/crates/daemons/voice-ingress/src/api.rs @@ -228,6 +228,8 @@ pub async fn ingress( ..=user_limits.video_aspect_ratio[1]) .contains(&(track.width as f32 / track.height as f32))))) { + log::debug!("Removing user {user_id} from channel {channel_id} {event:?} due to forbidden track."); + voice_client.remove_user(node, user_id, channel_id).await?; delete_voice_state(channel_id, channel.server(), user_id).await?; } else {