Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7 debug output: "ERROR:177: timed out...mMajorChangePending=0"

I am seeing the following error in Xcode 7 build 6 debug console when running my app in the iOS 9 simulator:

2015-08-27 11:31:25.464 Reps[87841:2572333] 11:31:25.463 ERROR:    177: timed out after 0.012s (589 590); mMajorChangePending=0

Has anyone else seen this? Any idea what it means?

like image 696
phatmann Avatar asked Aug 27 '15 17:08

phatmann


1 Answers

Could you post more code for this?

I had the same error and it turned out I was being stupid. I already declared var player = AVAudioPlayer() outside of viewDidLoad.

I was then trying let player = try AVAudioPlayer....

I got rid of the let as I had already declared the variable.. God knows what I was thinking putting let there! All seems to work fine now :)

like image 134
Prateek Avatar answered Nov 09 '22 00:11

Prateek