Hi,
I just realized that all logs from the watchOS 10 simulator are not showing in the Xcode 15 console. When I run the same code to log on the iOS simulator the output is showing as expected.
Here's my sample code
os_log("Test OSLog", type: .debug)
os_log(.debug, "Test OSLog 2")
if #available(watchOS 7.0, *) {
Logger(subsystem: "Test", category: "Test").debug("Test Logger OSLog")
}
None of the log functions above leads to any output in the console window in Xcode. Did anyone find a solution for that? I did not find anything about it so far in any other posts.
I'm still on the last Beta, but will update to RC soon.