How can I turn on Stack logging on Xcode 16

until previous version of the Xcode, I can see the backtrace of view by edit scheme -> Diagnostics -> Logging -> check Malloc Stack and select All Allocation and Free History` but the option just gone in Xcode 16.

Yes, this was useful for debugging layout constraints, but their history is no longer shown automatically now.

The only workaround I've found is to get the constraint's address while in the view debugger, resume then go into the memory debugger and look up its address.

This works, but is several more steps now.

This was incredibly helpful in figuring out how and from where the view was initalised via the debug view hierarchy. Is there any alternative to being able to do that that anyone found?

How can I turn on Stack logging on Xcode 16
 
 
Q