diff --git a/main/http_server/axe-os/src/app/components/logs/logs.component.html b/main/http_server/axe-os/src/app/components/logs/logs.component.html
index 4f677bfa..45c09d6e 100644
--- a/main/http_server/axe-os/src/app/components/logs/logs.component.html
+++ b/main/http_server/axe-os/src/app/components/logs/logs.component.html
@@ -48,7 +48,7 @@
-
₿ {{log | ANSI}}
+
₿ {{log.text | ANSI}}
diff --git a/main/http_server/axe-os/src/app/components/logs/logs.component.scss b/main/http_server/axe-os/src/app/components/logs/logs.component.scss
index 8e42e74c..00c29233 100644
--- a/main/http_server/axe-os/src/app/components/logs/logs.component.scss
+++ b/main/http_server/axe-os/src/app/components/logs/logs.component.scss
@@ -8,6 +8,14 @@
>div {
max-width: 100%;
line-break: anywhere;
-
+ font-family: 'Courier New', Courier, monospace;
}
-}
\ No newline at end of file
+}
+
+.ansi-red { color: #ff0000; }
+.ansi-green { color: #00ff00; }
+.ansi-yellow { color: #ffff00; }
+.ansi-blue { color: #0000ff; }
+.ansi-magenta { color: #ff00ff; }
+.ansi-cyan { color: #00ffff; }
+.ansi-white { color: #ffffff; }
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 df7f072f..8dd43c5c 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
@@ -14,7 +14,7 @@ export class LogsComponent implements OnDestroy, AfterViewChecked {
@ViewChild('scrollContainer') private scrollContainer!: ElementRef;
public info$: Observable;
- public logs: string[] = [];
+ public logs: { className: string, text: string }[] = [];
private websocketSubscription?: Subscription;
@@ -55,7 +55,24 @@ export class LogsComponent implements OnDestroy, AfterViewChecked {
if (this.showLogs) {
this.websocketSubscription = this.websocketService.ws$.subscribe({
next: (val) => {
- this.logs.push(val);
+ const matches = val.matchAll(/\[(\d+;\d+)m(.*?)(?=\[|\n|$)/g);
+ let className = 'ansi-white'; // default color
+
+ for (const match of matches) {
+ const colorCode = match[1].split(';')[1];
+ switch (colorCode) {
+ case '31': className = 'ansi-red'; break;
+ case '32': className = 'ansi-green'; break;
+ case '33': className = 'ansi-yellow'; break;
+ case '34': className = 'ansi-blue'; break;
+ case '35': className = 'ansi-magenta'; break;
+ case '36': className = 'ansi-cyan'; break;
+ case '37': className = 'ansi-white'; break;
+ }
+ }
+
+ this.logs.push({ className, text: val });
+
if (this.logs.length > 256) {
this.logs.shift();
}