mirror of
https://github.com/wnagrodzki/SwiftLogger.git
synced 2025-04-06 12:31:51 +02:00
Made DiskLogger to log it's own errors on warning level
This commit is contained in:
parent
41462ded26
commit
fab84b153b
1 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ public final class DiskLogger: Logger {
|
|||
|
||||
private func log(_ message: String) {
|
||||
guard let data = message.data(using: .utf8) else {
|
||||
log("Message failed to convert to UTF8")
|
||||
log("Message failed to convert to UTF8", level: .warning)
|
||||
return
|
||||
}
|
||||
queue.async {
|
||||
|
@ -73,7 +73,7 @@ public final class DiskLogger: Logger {
|
|||
}
|
||||
catch {
|
||||
let message = String(describing: error)
|
||||
self.log(message)
|
||||
self.log(message, level: .warning)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue