mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-07-28 15:38:40 +02:00
- enable logs page on iOS - centralize all logging - wrap long identifiers in logs UI - update editorconfig for swift files - update podfile
18 lines
384 B
Swift
18 lines
384 B
Swift
//
|
|
// LogEntry.swift
|
|
// Audiobookshelf
|
|
//
|
|
// Created by Christopher Jensen-Reimann on 9/3/25.
|
|
//
|
|
|
|
import Foundation
|
|
import RealmSwift
|
|
|
|
class LogEntry: Object, Codable {
|
|
@Persisted(primaryKey: true) var id: String = UUID().uuidString
|
|
@Persisted var tag: String = ""
|
|
@Persisted var level: String = ""
|
|
@Persisted var message: String = ""
|
|
@Persisted var timestamp: Int = 0
|
|
}
|