I'm trying to add iOS 8's new activity tracing feature to my app, but I'm not able to see any messages coming from my tracing. I'm using Xcode 6.2 beta 4 to drive my app on an iPod touch running iOS 8.2 beta 4.
os_activity_initiate("activity", OS_ACTIVITY_FLAG_DEFAULT, ^{
os_trace_debug("test tracing");
doAThing(); // breakpoint on this line
});
When I hit the breakpoint, I try
(lldb) thread info
thread #11: tid = 0x3b41, ...
like the article describes, but I don't see any messages about the activity.