Is there any way to access the device console log as shown in Xcode -> organiser -> device -> console using objective C. I have tried using asl.h but it just gives me the nslog messages.What i want is the other messages to read in objective c program which are logged in device console.
Asked
Active
Viewed 2,137 times
1
-
Apple's official public APIs do not allow an iOS app to access Device Logs, assuming you're working an iOS app. – Raptor Oct 08 '13 at 04:49
-
Check out these previous questions. They provide some possible work arounds for both the console log and the device logs. http://stackoverflow.com/questions/10394010/accessing-ios-crash-report-from-ios-app http://stackoverflow.com/questions/8828965/how-to-read-the-contents-of-the-device-console-on-iphone – Ben Avery Oct 08 '13 at 04:58
1 Answers
1
In github see this projcet,its help you

Sumit Mundra
- 3,891
- 16
- 29
-
i dont want my nslog messages to be read but other console message that are shown in device console xcode organizer – Nikhil Pote Oct 08 '13 at 05:20
-