85 lines
2.4 KiB
Swift
85 lines
2.4 KiB
Swift
//
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
import Logging
|
|
public import SignalServiceKit
|
|
|
|
// NOTE: There are two separate classes with the name Logger
|
|
// being used in this file.
|
|
public extension DebugLogger {
|
|
static func configureSwiftLogging() {
|
|
LoggingSystem.bootstrap { _ in
|
|
CLForwardingLogHandler()
|
|
}
|
|
}
|
|
|
|
// A LogHandler that forwards to CocoaLumberjack.
|
|
private struct CLForwardingLogHandler: LogHandler {
|
|
public init() {}
|
|
|
|
@inlinable
|
|
public func log(
|
|
level: Logging.Logger.Level,
|
|
message: Logging.Logger.Message,
|
|
metadata: Logging.Logger.Metadata?,
|
|
source: String,
|
|
file: String,
|
|
function: String,
|
|
line: UInt
|
|
) {
|
|
// TODO: Remove.
|
|
let message = "MCSDK: " + message.description
|
|
let line = Int(line)
|
|
|
|
switch level {
|
|
case .trace:
|
|
SignalServiceKit.Logger.verbose(message, file: file, function: function, line: line)
|
|
case .debug:
|
|
SignalServiceKit.Logger.debug(message, file: file, function: function, line: line)
|
|
case .info,
|
|
.notice:
|
|
SignalServiceKit.Logger.info(message, file: file, function: function, line: line)
|
|
case .warning:
|
|
SignalServiceKit.Logger.warn(message, file: file, function: function, line: line)
|
|
case .error,
|
|
.critical:
|
|
SignalServiceKit.Logger.error(message, file: file, function: function, line: line)
|
|
}
|
|
}
|
|
|
|
@inlinable
|
|
public subscript(metadataKey metadataKey: String) -> Logging.Logger.Metadata.Value? {
|
|
get {
|
|
return self.metadata[metadataKey]
|
|
}
|
|
set {
|
|
self.metadata[metadataKey] = newValue
|
|
}
|
|
}
|
|
|
|
@inlinable public var metadata: Logging.Logger.Metadata {
|
|
get {
|
|
return [:]
|
|
}
|
|
set {
|
|
_ = newValue
|
|
}
|
|
}
|
|
|
|
@inlinable public var logLevel: Logging.Logger.Level {
|
|
get {
|
|
#if DEBUG
|
|
return .trace
|
|
#else
|
|
return .info
|
|
#endif
|
|
}
|
|
set {
|
|
_ = newValue
|
|
}
|
|
}
|
|
}
|
|
}
|