From e3028301ea8e25001314304d985c05c074687eec Mon Sep 17 00:00:00 2001 From: Jake Correnti Date: Tue, 11 Feb 2025 19:11:42 -0500 Subject: [PATCH] demote WARN log to DEBUG Signed-off-by: Jake Correnti --- src/devices/src/virtio/mmio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/src/virtio/mmio.rs b/src/devices/src/virtio/mmio.rs index 86593215..a6492cf0 100644 --- a/src/devices/src/virtio/mmio.rs +++ b/src/devices/src/virtio/mmio.rs @@ -134,7 +134,7 @@ impl MmioTransport { fn reset(&mut self) { if self.locked_device().is_activated() { - warn!("reset device while it's still in active state"); + debug!("reset device while it's still in active state"); } self.features_select = 0; self.acked_features_select = 0;