From 7883ec274c9b5453e49901e5662f130dce4104b2 Mon Sep 17 00:00:00 2001 From: David Venhoff Date: Tue, 19 Aug 2025 13:45:42 +0200 Subject: [PATCH] Log when trace file gets truncated --- nyx/pt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nyx/pt.c b/nyx/pt.c index d61bd87883..16acceedc4 100644 --- a/nyx/pt.c +++ b/nyx/pt.c @@ -109,6 +109,7 @@ int pt_enable(CPUState *cpu, bool hmp_mode) redqueen_trace_reset(); alt_bitmap_reset(); } + nyx_debug("Truncating the dump file!\n"); pt_truncate_pt_dump_file(); return pt_cmd(cpu, KVM_VMX_PT_ENABLE, hmp_mode); }