diff options
Diffstat (limited to 'core/src/data')
| -rw-r--r-- | core/src/data/controller/cli/cli_command.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/data/controller/cli/cli_command.rs b/core/src/data/controller/cli/cli_command.rs index b918d47..9fee0b0 100644 --- a/core/src/data/controller/cli/cli_command.rs +++ b/core/src/data/controller/cli/cli_command.rs @@ -111,9 +111,9 @@ pub fn process_controller_cli(runtime: Arc<Mutex<ControllerRuntime>>, cmd: Contr Commands::Pop => { entry_mutex!(runtime, |guard| { if let Some(msg) = guard.pop() { - info!("Pop: {:?}", msg); + info!("{:?}", msg); } else { - info!("None!"); + info!("None"); } }); } @@ -121,7 +121,7 @@ pub fn process_controller_cli(runtime: Arc<Mutex<ControllerRuntime>>, cmd: Contr Commands::PopAll => { entry_mutex!(runtime, |guard| { while let Some(msg) = guard.pop() { - info!("Pop: {:?}", msg); + info!("{:?}", msg); } }); } |
