mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 23:18:27 +02:00
31 lines
1.5 KiB
Swift
31 lines
1.5 KiB
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
A logger for logging to MXLog.
|
|
For use with UILog.
|
|
*/
|
|
class MatrixSDKLogger: LoggerProtocol {
|
|
static func verbose(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) {
|
|
MXLog.verbose(message(), file, function, line: line, context: context)
|
|
}
|
|
static func debug(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) {
|
|
MXLog.debug(message(), file, function, line: line, context: context)
|
|
}
|
|
static func info(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) {
|
|
MXLog.info(message(), file, function, line: line, context: context)
|
|
}
|
|
static func warning(_ message: @autoclosure () -> Any, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) {
|
|
MXLog.warning(message(), file, function, line: line, context: context)
|
|
}
|
|
static func error(_ message: @autoclosure () -> StaticString, _ file: String = #file, _ function: String = #function, line: Int = #line, context: Any? = nil) {
|
|
MXLog.error(message(), file, function, line: line, context: context)
|
|
}
|
|
}
|