I use AVFoundation.AVPlayer.play()
to play audio from a remote source. In the preview of iOS 10 and XCode 8.0 beta (8S128d) released at WWDC 2016, this method sends a lot of information each second to the XCode console:
2016-07-04 14:27:58.982694 MyApp[8622:984983] [AQ] 3269: aq@0x7fa27e00d000: ptr 0x7fa27b877f23, size 0x344, ID 6244
2016-07-04 14:27:58.983794 MyApp[8622:984983] [AQ] 3269: aq@0x7fa27e00d000: ptr 0x7fa27c814920, size 0x1a2, ID 6245
2016-07-04 14:27:58.984329 MyApp[8622:986313] [AQ] 3252: aq@0x7fa27e00d000: ptr 0x7fa27b60f1f0, size 0x1a2, user => ID 6251
2016-07-04 14:27:58.985039 MyApp[8622:984983] [AQ] 3269: aq@0x7fa27e00d000: ptr 0x7fa27f014e91, size 0x4e6, ID 6246
2016-07-04 14:27:58.985958 MyApp[8622:986313] [AQ] 3252: aq@0x7fa27e00d000: ptr 0x7fa27d81627c, size 0x4e6, user => ID 6252
2016-07-04 14:27:58.986889 MyApp[8622:986313] [AQ] 3252: aq@0x7fa27e00d000: ptr 0x7fa27b75a950, size 0x1a2, user => ID 6253
2016-07-04 14:27:58.987595 MyApp[8622:986313] [AQ] 3252: aq@0x7fa27e00d000: ptr 0x7fa27d05d78c, size 0x344, user => ID 6254
This doesn't happen with AVPlayer.play()
in iOS 9 and XCode 7.
What is this information and how can I suppress it?