Increase log retention

This commit is contained in:
Andras Schmelczer 2025-03-27 21:27:24 +00:00
parent 78ba74b844
commit eafb8625c3
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -21,7 +21,7 @@ export class LogLine {
}
export class Logger {
private static readonly MAX_MESSAGES = 2000;
private static readonly MAX_MESSAGES = 100000;
private readonly messages: LogLine[] = [];
private readonly onMessageListeners: ((message: LogLine) => void)[] = [];