GKSConnSettings message in xcode console

Got this message all of a sudden in my application -

<Info>: 22:20:44.800330 com.apple.AVConference: GKSConnSettings: set server: { "gk-cdx" = "17.173.254.218:4398"; "gk-commnat-cohort" = "17.173.254.220:16386"; "gk-commnat-main0" = "17.173.254.219:16384"; "gk-commnat-main1" = "17.173.254.219:16385"; } 

Where is he from?

+8
ios xcode
source share
2 answers

In iOS 6.0 +, this log will be displayed as soon as your localPlayer is authenticated, i.e. install

 [GKLocalPlayer localPlayer].authenticateHandler = ^(UIViewController *viewController, NSError *error) { if (viewController != NULL) { // present the viewController now } else if ([GKLocalPlayer localPlayer].isAuthenticated) { NSLog(@"Already authenticated"); } else { NSLog(@"Not authenticated, disable GameCenter"); } }; 

and if necessary, submit a viewController to enter the GameCenter

+2
source share

My first instinct tells me that this may be related to your environment. Do you accidentally work with a virtual machine? It happened in my case.

0
source share

All Articles