I want to test new iOS 14 Logger
in Playground but I found next issue:
// MyLog.playground
import os
let logger = Logger()
logger.log("Hello OSLog")
Outputs:
error: Couldn't lookup symbols:
___dso_handle
___dso_handle
The same I have with old OSLog API:
os_log("Hello OSLog")
Is it possible to use OSLog
with playgrounds?