diff --git a/massa-execution-worker/src/controller.rs b/massa-execution-worker/src/controller.rs index 02d017b5c0..afe220ece1 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"); } }