Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS running app from xcode show me a message to enable debug logging

Tags:

xcode

ios

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.

enter image description here

What am I doing wrong?

like image 440
Rotem Avatar asked Jan 14 '16 11:01

Rotem


1 Answers

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.

like image 168
Guilherme Puglia Avatar answered Sep 19 '22 21:09

Guilherme Puglia