CleanroomLogger
CleanroomLogger copied to clipboard
CleanroomLogger provides an extensible Swift-based logging API that is simple, lightweight and performant
I'm very glad to find such wonderful log open source. But I have some questions about the **FileLogRecorder**. As the document said, it support asynchronous and synchronous Mode, but I...
Thanks a lot for the awesome library, however, I need to know how to retrieve the logs from the file its written into?
Hi. CleanroomLogger vestion 5.1.1 We have some issue related with CleenroomLogger detected by Crashlytics. We had 6 crashes in two days so far (we didn't have it during tests). It...
Hello, I want to know if this lib has the functionality of capture STDOUT. I have an iOS app, and I need to capture logging produced by third party code...
Trying to include this in a tvOS project getting the following error: `The platform of the target `TesttvOSPod` (tvOS 10.2) is not compatible with `CleanroomLogger (5.1.1)`, which does not support...
…is the last day of the previous month At month start, the prune whitelist takes the current day and starts subtracting days to generate a whilelist of acceptable filenames. Currently,...
If the Logger saves into files on the Apple Watch, what's the easiest way to get those files out of the watchOS?
extension Log { static func configure() { let logDir = LocalStorage.shared.getAppSupportURL().appendingPathComponent("Logs", isDirectory: true) print(logDir.absoluteString) // output: "file:///Users/jrslkns/Library/Application%20Support/Tacx%20Desktop%20app/Logs/" let rotatingConfiguration = RotatingLogFileConfiguration(minimumSeverity: .info, daysToKeep: 7, directoryPath: logDir.absoluteString) do { try rotatingConfiguration.createLogDirectory()...
I had forked your project and added a User log channel and severity. Which proved pretty handy. For I could create a Log.user?.message() or use a corresponding traceUser() method to...
Hello, I'm kinda new to logging and I was wondering if you could provide an example if possible for logging to a certain directory. The logger would continually log to...