From 7202f4bd25558b14484be2a7bf4c2f8fed361206 Mon Sep 17 00:00:00 2001 From: Erik Olof Gunnar Andersson Date: Fri, 6 Sep 2024 20:29:43 +0200 Subject: [PATCH] Increase the max number of log lines stored --- .../axe-os/src/app/components/logs/logs.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/http_server/axe-os/src/app/components/logs/logs.component.ts b/main/http_server/axe-os/src/app/components/logs/logs.component.ts index ca004f438..df7f072fd 100644 --- a/main/http_server/axe-os/src/app/components/logs/logs.component.ts +++ b/main/http_server/axe-os/src/app/components/logs/logs.component.ts @@ -56,7 +56,7 @@ export class LogsComponent implements OnDestroy, AfterViewChecked { this.websocketSubscription = this.websocketService.ws$.subscribe({ next: (val) => { this.logs.push(val); - if (this.logs.length > 100) { + if (this.logs.length > 256) { this.logs.shift(); } }