fix(client): remove → arrow before globe, use for ok log

This commit is contained in:
Helios Agent 2026-03-03 16:53:02 +01:00
parent 9285dbbd49
commit d114c813fb
No known key found for this signature in database
GPG key ID: C8259547CD8309B5

View file

@ -71,13 +71,13 @@ fn enable_ansi() {
macro_rules! log_status { macro_rules! log_status {
($($arg:tt)*) => { ($($arg:tt)*) => {
println!(" {} {}", "".cyan().bold(), format!($($arg)*)); println!(" {}", format!($($arg)*));
}; };
} }
macro_rules! log_ok { macro_rules! log_ok {
($($arg:tt)*) => { ($($arg:tt)*) => {
println!(" {} {}", "".green().bold(), format!($($arg)*)); println!(" {} {}", "", format!($($arg)*));
}; };
} }