Fix read_console default to include logs (#515)

main
dsarno 2026-01-04 23:20:32 -08:00 committed by GitHub
parent 756fc0090d
commit d6a1a9b9e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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')