From f3209e4f789fd55e2722e66b9e6ef5b89cc416ce Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Wed, 14 May 2025 13:54:03 +0200 Subject: [PATCH] devices: silence IRQ debug!() spam This simplifies debugging of running VMs. Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- devices/src/ioapic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/src/ioapic.rs b/devices/src/ioapic.rs index 07b36b653..7adbe4f66 100644 --- a/devices/src/ioapic.rs +++ b/devices/src/ioapic.rs @@ -418,7 +418,7 @@ impl InterruptController for Ioapic { self.interrupt_source_group .trigger(irq as InterruptIndex) .map_err(Error::TriggerInterrupt)?; - debug!("Interrupt {irq} successfully delivered"); + trace!("Interrupt {irq} successfully delivered"); // If trigger mode is level sensitive, set the Remote IRR bit. // It will be cleared when the EOI is received.