crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

commit 0abf0d6248e9d5fdcd3396e399b5bd0adb484b5f
parent 1603627c3c4240c2d7c47bfa0f75292d2a1d847e
Author: Michael Camilleri <[email protected]>
Date:   Sat,  6 Jun 2026 11:37:51 +0900

Bump maximum log entries to 1000

Diffstat:
MCrossmate/Services/DebuggingMonitors.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Crossmate/Services/DebuggingMonitors.swift b/Crossmate/Services/DebuggingMonitors.swift @@ -189,7 +189,7 @@ struct EventLogEntry: Identifiable, Sendable { final class EventLog { private(set) var entries: [EventLogEntry] = [] - private let maxEntries = 300 + private let maxEntries = 1000 func note(_ message: String, level: String = "info") { append(level: level, message)