LeadKit/TILogging/Sources/LogEntryTableViewCell.swift

11 lines
260 B
Swift

import TIUIKitCore
import TIUIElements
import OSLog
@available(iOS 15, *)
open class LogEntryTableViewCell: BaseInitializableCell, ConfigurableView {
open func configure(with entry: OSLogEntryLog) {
textLabel?.text = entry.composedMessage
}
}