Hi, from my iOS app I would like to catch kermit l...
# touchlab-tools
m
Hi, from my iOS app I would like to catch kermit logs printed by my kmm library. I see them on the console but when I try to catch them with OSLogStore https://developer.apple.com/documentation/oslog/oslogstore , nothing appears. Any hint is appreciated, thank you very much
Copy code
import OSLog

class Test: LogWriter {
    private let defaultLogger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "")

    override func log(severity: Severity, message: String, tag: String, throwable: KotlinThrowable?) {
        defaultLogger.debug("BWB \(message)")
    }
}
A first solution I found is to build a custom LogWriter and pass it to the library. On which bundle identifier does Kermit write to by default?
k
m
Oh missed it! Thank you!