From 84a227694d7b97bb4d09786dcfcc3d7c0ca16d4f Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Wed, 21 Feb 2024 10:46:08 +0100 Subject: [gdb/dap] Flush after printing in log_stack I noticed that function log flushes the dap log file after printing, but that function log_stack doesn't. Fix this by also flushing the dap log file in log_stack. Tested on aarch64-linux. Approved-By: Tom Tromey --- gdb/python/lib/gdb/dap/startup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'gdb/python/lib') diff --git a/gdb/python/lib/gdb/dap/startup.py b/gdb/python/lib/gdb/dap/startup.py index daaeb28..f20c541 100644 --- a/gdb/python/lib/gdb/dap/startup.py +++ b/gdb/python/lib/gdb/dap/startup.py @@ -178,6 +178,7 @@ def log_stack(level=LogLevel.DEFAULT): """Log a stack trace to the log file, if logging is enabled.""" if dap_log.log_file is not None and level <= _log_level.value: traceback.print_exc(file=dap_log.log_file) + dap_log.log_file.flush() @in_gdb_thread -- cgit v1.1