3

I tried googling and reading newest TestFairy documentation, but nothing worth of mention there. My problem is next: I upgraded Xcode to 8, and created new build that I uploaded on TestFairy. Everything is working normal, except now I don't see application logs. Anyone else experienced same issue?

Note: Everything worked fine with Xcode 7 and iOS 10.

Stefan
  • 1,283
  • 15
  • 33
  • Not using TestFairy, but similar experience here; logs diverted to a log file with asl_add_log_file() do not get written with Xcode 8/iOS 10. Xcode 8 to iOS 10 simulator, works, but not on the device. – oh7lzb Oct 12 '16 at 13:56

1 Answers1

1

Disclosure: I work for TestFairy

Apple changed their log apis with iOS 10 effectively barring libraries from ours from collecting logs from a device. We've suggested a workaround which asks developers to either use TFLog instead of NSLog, or create a macro forwarding all calls to NSLog to TFLog. This is described in our docs which are available here.

Vijay Sharma
  • 2,252
  • 1
  • 17
  • 21