Reputation: 2356
when I start my app from xcode 7 I see this message
2016-01-14 13:50:13.119 Guggy[31879:] <GMR/INFO> To enable debug logging
set the following application argument: -GMRDebugEnabled (see http://goo.gl/Y0Yjwu)
I tried to follow their instructions in the link but it still show me this message.
What am I doing wrong?
Upvotes: 8
Views: 9698
Reputation: 179
You are not doing anything wrong.
The message " To enable debug logging ..." is always showing up regardless if you have the debug logging enabled or not.
If you want to check whether you enabled the debug logging, you should look for the following message: " Debug logging enabled".
Use -noGMRDebugEnabled to disable the debug logging.
Upvotes: 7