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 <philipp.schuster@cyberus-technology.de>
This commit is contained in:
Philipp Schuster 2023-01-09 14:40:09 +01:00 committed by Rob Bradford
parent 67340c5295
commit 0dc3282ae0

View File

@ -300,7 +300,7 @@ impl SerialManager {
}
}
EpollDispatch::Kill => {
info!("KILL event received, stopping epoll loop");
info!("KILL_EVENT received, stopping epoll loop");
return Ok(());
}
}