From aa656afee57225c90607b3a3da3fec26c02dcb6a Mon Sep 17 00:00:00 2001 From: dsarno Date: Sun, 4 Jan 2026 23:19:58 -0800 Subject: [PATCH] Fix read_console default to include logs --- 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 873a7b86e..5992e2c96 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')