Xcode Message: Message send exceeds rate-limit threshold and will be dropped

I'm getting hundreds of the message below in Xcode. I've narrowed it down to when I instantiate the following

AVAudioUnitComponentManager.shared()

Message send exceeds rate-limit threshold and will be dropped. { reporterID=231700600717315, rateLimit=32hz }

For me, this ended up being calling into UIImpactFeedbackGenerator too frequently. I think it's benign, it's just a message from the OS stating it can't satisfy your request for haptics at the frequency you are requesting.

Xcode Message: Message send exceeds rate-limit threshold and will be dropped
 
 
Q