Just a heads up for those who use AppleScriptObjC scripts in Xcode projects:
Xcode 16 currently doesn’t show log entries from AppleScriptObjC scripts in Xcode console.
For example, neither of these will produce any output in Xcode:
log "something"
current application's NSLog("something")
As a workaround, I’m temporarily calling a method that’s calling NSLog in an Objective-C class.
(ASOC logs appear as normally in Console.app).
I’m sure those who are affected will also submit this bug soon.