Hi.
I want to use OSLog. It is working as expected inside my controller. I can view all details in the console and can use "jump to source" and it jumps to the source code :) NICE
If I call this inside a package in side a static func like this
Package Example:
import OSLog
class A {
static func testLog(meesage: String) {
Logger(subsystem: "Test", category: "console").info("\(message)")
}
}
I can the message inside the console but "Jump to soure" is not working. Only a ?
appears on screen.
Did I miss anything ?