From aeb4bfe093529ad4956dcf05358510b0fe61d24a Mon Sep 17 00:00:00 2001 From: n00mkrad <61149547+n00mkrad@users.noreply.github.com> Date: Thu, 29 Jan 2026 12:13:39 +0100 Subject: [PATCH] Logger: In CLI mode, highlight UI messages in cyan --- CodeLegacy/IO/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeLegacy/IO/Logger.cs b/CodeLegacy/IO/Logger.cs index ac5bb77..baa3b00 100644 --- a/CodeLegacy/IO/Logger.cs +++ b/CodeLegacy/IO/Logger.cs @@ -73,7 +73,7 @@ namespace Flowframes _lastUi = msg; if (entry.toConsole) - Console.WriteLine(msg); + Console.WriteLine(entry.hidden ? msg : $"\u001b[96m{msg}\u001b[0m"); try {