1

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.

  • 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 Answers1

1

In github see this projcet,its help you

https://github.com/sumitmundra/AksDeviceConsole

Sumit Mundra
  • 3,891
  • 16
  • 29