From d114c813fbe109a7400b0ac36cb32db0ab57015e Mon Sep 17 00:00:00 2001 From: Helios Agent Date: Tue, 3 Mar 2026 16:53:02 +0100 Subject: [PATCH] =?UTF-8?q?fix(client):=20remove=20=E2=86=92=20arrow=20bef?= =?UTF-8?q?ore=20globe,=20use=20=E2=9C=85=20for=20ok=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/client/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/client/src/main.rs b/crates/client/src/main.rs index 02e5d0c..b550843 100644 --- a/crates/client/src/main.rs +++ b/crates/client/src/main.rs @@ -71,13 +71,13 @@ fn enable_ansi() { macro_rules! log_status { ($($arg:tt)*) => { - println!(" {} {}", "→".cyan().bold(), format!($($arg)*)); + println!(" {}", format!($($arg)*)); }; } macro_rules! log_ok { ($($arg:tt)*) => { - println!(" {} {}", "✓".green().bold(), format!($($arg)*)); + println!(" {} {}", "✅", format!($($arg)*)); }; }