Iβm trying to add a new activity tracking function to my iOS 8 application, but I donβt see the messages coming from my trace. I am using Xcode 6.2 beta 4 for my iPod touch application running on 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 a breakpoint, I try
(lldb) thread info thread
as described in the article, but I do not see activity messages.
source share