Stefan
Stefan

Reputation: 1335

iOS 10/Xcode 8 TestFairy not logging

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.

Upvotes: 3

Views: 369

Answers (1)

Vijay Sharma
Vijay Sharma

Reputation: 2252

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.

Upvotes: 1

Related Questions