I\'m trying to do some basic logging while I work on an app. I tossed some NSLog()
s into my code, but nothing is being printed to the Xcode console below. Literally
Figured it out. It's not an intermittent issue or one that can just be fixed with a restart. It's a Run configuration issue.
Click on the Run Scheme selector in the top left of Xcode's toolar.
Click Manage Schemes.
Click on your main App Project.
Click the Edit button in the bottom left.
Uncheck OS_ACTIVITY_MODE
.
Click Close.
Viola. All your console logs come back.