Where can I find the exported GameKit log files?

On iOS, you can export GameKit log files from the settings app. However, it cannot tell you where to find these log files. You also cannot view them from Xcode-> devices.

+3


source to share


2 answers


I finally found this information. Hope this helps!

Getting crash logs without Xcode

After connecting the device and syncing with iTunes, the crash logs can be found in the following locations, depending on the platform:



Log files error log

  • Mac OS X: ~ / Library / Logs / CrashReporter / MobileDevice / <DEVICE_NAME>
  • Windows XP: C: \ Documents and Settings \\ Application Data \ Apple Computer \ Logs \ CrashReporter \ MobileDevice \ <DEVICE_NAME>
  • Windows Vista or 7: C: \ Users \ <USERNAME> \ AppData \ Roaming \ Apple Computer \ Logs \ CrashReporter \ MobileDevice \ <DEVICE_NAME>
+8


source


I searched the logs from the iOS simulator, found them using find in terminal ...



find -x / -name GameKit-Log*

      

0


source







All Articles