Demote removing subscribers for MIME (#1954)

This commit is contained in:
David Zhao
2023-08-10 18:50:19 -07:00
committed by GitHub
parent ae29d05ec9
commit 387faf2718

View File

@@ -520,7 +520,7 @@ func (t *MediaTrackReceiver) RemoveSubscriber(subscriberID livekit.ParticipantID
}
func (t *MediaTrackReceiver) removeAllSubscribersForMime(mime string, willBeResumed bool) {
t.params.Logger.Infow("removing all subscribers for mime", "mime", mime)
t.params.Logger.Debugw("removing all subscribers for mime", "mime", mime)
for _, subscriberID := range t.MediaTrackSubscriptions.GetAllSubscribersForMime(mime) {
t.RemoveSubscriber(subscriberID, willBeResumed)
}