Ios log 4 (#569)

iOS logging refactoring
This commit is contained in:
isamnezia 2024-02-10 19:44:55 +03:00 committed by GitHub
parent f2d13148a3
commit 158c11a0ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 252 additions and 93 deletions

View file

@ -0,0 +1,26 @@
import Foundation
public func swiftUpdateLogData(_ qtString: std.string) -> std.string {
let qtLog = Log(String(describing: qtString))
var log = qtLog
if let neLog = Log(at: Log.neLogURL) {
neLog.records.forEach {
log.records.append($0)
}
log.records.sort {
$0.date < $1.date
}
}
return std.string(log.description)
}
public func swiftDeleteLog() {
Log.clear(at: Log.neLogURL)
}
public func toggleLogging(_ isEnabled: Bool) {
Log.isLoggingEnabled = isEnabled
}