From aa326e69b18a4390ffbc97268eaec4793761f083 Mon Sep 17 00:00:00 2001 From: "1992414357@qq.com" <1992414357@qq.com> Date: Wed, 11 Jun 2025 18:32:48 +0800 Subject: . --- core/src/data/controller/cli/cli_command.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/src/data/controller/cli') 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>, 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>, cmd: Contr Commands::PopAll => { entry_mutex!(runtime, |guard| { while let Some(msg) = guard.pop() { - info!("Pop: {:?}", msg); + info!("{:?}", msg); } }); } -- cgit