aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/debugger/crashreport.gdb4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/debugger/crashreport.gdb b/contrib/debugger/crashreport.gdb
index ec3ffb3e9ab..6be4457238d 100644
--- a/contrib/debugger/crashreport.gdb
+++ b/contrib/debugger/crashreport.gdb
@@ -2,8 +2,9 @@ set logging overwrite on
set logging file backtrace.log
handle SIG33 pass nostop noprint
set pagination 0
-run
set logging on
+echo \n--- DEBUG: --- START\n\n
+run
echo \n--- DEBUG: BACKTRACE FULL\n\n
backtrace full
echo \n--- DEBUG: INFO REGISTERS\n\n
@@ -12,5 +13,6 @@ echo \n--- DEBUG: CALLS (x/32i $pc)\n\n
x/32i $pc
echo \n--- DEBUG: THREAD APPLY ALL BACKTRACE\n
thread apply all backtrace
+echo \n--- DEBUG: --- STOP\n\n
set logging off
quit