diff --git a/apple/OmnivoreKit/Sources/Services/AudioSession/SpeechPlayerItem.swift b/apple/OmnivoreKit/Sources/Services/AudioSession/SpeechPlayerItem.swift index 456b2e5c4..af843836c 100644 --- a/apple/OmnivoreKit/Sources/Services/AudioSession/SpeechPlayerItem.swift +++ b/apple/OmnivoreKit/Sources/Services/AudioSession/SpeechPlayerItem.swift @@ -70,11 +70,9 @@ class SpeechPlayerItem: AVPlayerItem { DispatchQueue.main.async { if self.speechItem.audioIdx > self.session.currentAudioIndex + 5 { // prefetch has gotten too far ahead of the audio. Pause the prefetch queue - print("PAUSING PREFETCH QUEUE", self.speechItem.audioIdx, self.session.currentAudioIndex + 10, self.speechItem.text) prefetchQueue.isSuspended = true } if self.speechItem.audioIdx < self.session.currentAudioIndex + 5 { - print("RESUMING PREFETCH QUEUE", self.speechItem.audioIdx, self.session.currentAudioIndex + 5) prefetchQueue.isSuspended = false } }