Turn off excessive logging in iOS simulator

Running an app in the iPhone simulator on Xcode 8. My console is loaded with log statements from system framworks that are not my concern. Can I turn this off?

Try settting OS_ACTIVITY_MODE = disable in your debug scheme/project settings.


Just remember that while your nslogs should still work in the simulator, that change will quiet them when debugging on a device.

Turn off excessive logging in iOS simulator
 
 
Q