Fixed a build issue

pull/1061/head
Morgan Pretty 1 week ago
parent d30112ec60
commit b039fbe7b9

@ -664,9 +664,9 @@ private class SystemLogger: SystemLoggerType {
logger = os.Logger(subsystem: SystemLogger.subsystem, category: category)
}
#if DEBUG
/// When in debug mode log everything publicly to ensure it comes through both the Xcode debugger and the Console.app
public func log(_ level: Log.Level, _ log: String) {
#if DEBUG
/// When in debug mode log everything publicly to ensure it comes through both the Xcode debugger and the Console.app
switch level {
case .off, .default: return
case .verbose: logger.trace("\(log, privacy: .public)")
@ -676,8 +676,8 @@ private class SystemLogger: SystemLoggerType {
case .error: logger.error("\(log, privacy: .public)")
case .critical: logger.critical("\(log, privacy: .public)")
}
}
#endif
}
}
// MARK: - Convenience

Loading…
Cancel
Save