()
| 572 | |
| 573 | // Debug method |
| 574 | public debug() { |
| 575 | console.log('IterationStore Debug:', { |
| 576 | totalIterations: this.iterations.size, |
| 577 | currentSessions: Array.from(this.currentSessions.entries()), |
| 578 | sessionCounts: Array.from(this.sessionIterationCounts.entries()), |
| 579 | iterations: Array.from(this.iterations.values()) |
| 580 | }); |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | // Export singleton instance |