()
| 51 | private sessionIterationCounts = new Map<string, number>(); // sessionId -> count |
| 52 | |
| 53 | constructor() { |
| 54 | // Subscribe to all log entries |
| 55 | Logger.addListener(this.handleLogEntry.bind(this)); |
| 56 | // Load persisted data on startup |
| 57 | this.loadFromIndexedDB(); |
| 58 | } |
| 59 | |
| 60 | private handleLogEntry(log: LogEntry) { |
| 61 | const iterationId = log.details?.iterationId; |
nothing calls this directly
no test coverage detected