Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Loading GAX Client mean? Is this an error?

Tags:

xcode

ios

xcode8

I'm currently working with build environments and following a few tutorials to load a plist with environmental variables. However I ran into the following in my prompt of Xcode

[Accessibility] ****************** Loading GAX Client Bundle ****************

Nothing should be printing out of my View controllers yet this popped out

Tried to search the web but didn't find anything useful to understand why this was printed out.

Was wondering if somebody could shed some light on this matter. Thanks!

like image 757
user805981 Avatar asked Nov 15 '16 21:11

user805981


2 Answers

This is just an information. You have "Guided Access" turned on on your iOS device. The accessibility features of iOS inject unexpected libraries into your process and the app will report this to Xcode.

like image 80
Dirk Avatar answered Oct 06 '22 15:10

Dirk


If you do not want this error to appear in your logs you can turn it off. Follow these steps to turn off Guided Access:

  1. Go to your iPhone settings.
  2. Select General.
  3. Select Accessibility.
  4. Scroll Down & Select Guided Acces.
  5. Turn off Guided Access.

This error should not appear in the logs anymore.

like image 36
Hemant Sharma Avatar answered Oct 06 '22 14:10

Hemant Sharma