mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
f3a168fd43
Refactor and split iostunnel with cmake changes, code cleanup
19 lines
564 B
Swift
19 lines
564 B
Swift
import Foundation
|
|
import os.log
|
|
|
|
public func wg_log(_ type: OSLogType, staticMessage: StaticString) {
|
|
guard Log.isLoggingEnabled else { return }
|
|
|
|
Log.Record(date: Date(), level: Log.Record.Level(from: type), message: "\(staticMessage)").save(at: Log.neLogURL)
|
|
}
|
|
|
|
public func wg_log(_ type: OSLogType, message: String) {
|
|
log(type, message: message)
|
|
}
|
|
|
|
public func log(_ type: OSLogType, message: String) {
|
|
guard Log.isLoggingEnabled else { return }
|
|
|
|
Log.Record(date: Date(), level: Log.Record.Level(from: type), message: message).save(at: Log.neLogURL)
|
|
}
|