From 8fca24597bf4fc0d1c69835955e009092f2d033c Mon Sep 17 00:00:00 2001 From: sydhds Date: Wed, 2 Oct 2024 10:47:31 +0200 Subject: [PATCH] Fix message for ExecutionManager --- massa-execution-worker/src/controller.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/massa-execution-worker/src/controller.rs b/massa-execution-worker/src/controller.rs index 02d017b5c08..afe220ece10 100644 --- a/massa-execution-worker/src/controller.rs +++ b/massa-execution-worker/src/controller.rs @@ -535,7 +535,7 @@ pub struct ExecutionManagerImpl { impl ExecutionManager for ExecutionManagerImpl { /// stops the worker fn stop(&mut self) { - info!("stopping Execution controller..."); + info!("Stopping Execution controller..."); // notify the worker thread to stop { let mut input_wlock = self.input_data.1.lock(); @@ -546,6 +546,6 @@ impl ExecutionManager for ExecutionManagerImpl { if let Some(join_handle) = self.thread_handle.take() { join_handle.join().expect("VM controller thread panicked"); } - info!("execution controller stopped"); + info!("Execution controller stopped"); } }