From 0dc3282ae047ab814c0bae0ce4e6ad84a24897a9 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Mon, 9 Jan 2023 14:40:09 +0100 Subject: [PATCH] lifecycle: align "KILL_EVENT received" messages across code-base To align the logging messages with the rest of the code, this message should be aligned with another similar occurrence in epoll_helper.rs Signed-off-by: Philipp Schuster --- vmm/src/serial_manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/serial_manager.rs b/vmm/src/serial_manager.rs index 4ea0fe26f..30170f90e 100644 --- a/vmm/src/serial_manager.rs +++ b/vmm/src/serial_manager.rs @@ -300,7 +300,7 @@ impl SerialManager { } } EpollDispatch::Kill => { - info!("KILL event received, stopping epoll loop"); + info!("KILL_EVENT received, stopping epoll loop"); return Ok(()); } }