From d6a1a9b9e35e3033262281b147281faf130eb69c Mon Sep 17 00:00:00 2001 From: dsarno Date: Sun, 4 Jan 2026 23:20:32 -0800 Subject: [PATCH] Fix read_console default to include logs (#515) --- Server/src/services/tools/read_console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/services/tools/read_console.py b/Server/src/services/tools/read_console.py index 873a7b8..5992e2c 100644 --- a/Server/src/services/tools/read_console.py +++ b/Server/src/services/tools/read_console.py @@ -44,7 +44,7 @@ async def read_console( unity_instance = get_unity_instance_from_context(ctx) # Set defaults if values are None action = action if action is not None else 'get' - types = types if types is not None else ['error', 'warning'] + types = types if types is not None else ['error', 'warning', 'log'] format = format if format is not None else 'plain' # Coerce booleans defensively (strings like 'true'/'false')