diff options
| author | 1992414357@qq.com <1992414357@qq.com> | 2025-06-11 18:32:48 +0800 |
|---|---|---|
| committer | 1992414357@qq.com <1992414357@qq.com> | 2025-06-11 18:32:48 +0800 |
| commit | aa326e69b18a4390ffbc97268eaec4793761f083 (patch) | |
| tree | a2a517083dc3ef71d2adbb0013b0b923ad4d7c93 /core/src/data/controller/cli | |
| parent | e5cbc548a7d8ba62a76421057d6b281a9277646f (diff) | |
.
Diffstat (limited to 'core/src/data/controller/cli')
| -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); } }); } |
