mirror of
https://github.com/wnagrodzki/SwiftLogger.git
synced 2025-04-06 12:31:51 +02:00
Dropped NSFoundation's string to data conversion method in favor to Swift's one
This commit is contained in:
parent
c83f341d6d
commit
ec98042420
1 changed files with 1 additions and 4 deletions
|
@ -56,10 +56,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", level: .warning)
|
||||
return
|
||||
}
|
||||
let data = Data(message.utf8)
|
||||
queue.async {
|
||||
self.buffer.append(data)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue