Reputation: 17054
'Points of interest' are not showing in Xcode. What are possible reasons for this?
Sample (followed from this answer):
let pointsOfInterest = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: .pointsOfInterest)
os_signpost(.event, log: pointsOfInterest, name: "Done", "All done")
Upvotes: 1
Views: 867
Reputation: 17054
I personally had this when I had the environment variable OS_ACTIVITY_MODE
set at disable
.
In a previous version, Xcode logged way too much which is why this setting was still active in my case.
When I unchecked this, the points of interest showed up again.
Upvotes: 0