I want to read the console of my application. My aim is find all messages like this:
Warning: Attempt to present <ChildViewController: 0x7b44e380> on <TopViewController: 0x7a65e5b0> which is already presenting (null)
I founded that on iOS7 you can’t read system messages.
Using Objective C to read log messages posted to the device console
In iOS 7 you can use ASL to read messages output by your own app, including on previous runs of the same build of your app, but not messages output by the system or by any other apps.
For my mind any warnings is a system messages. May be something changes on ios8?