fix(client): remove → arrow before globe, use ✅ for ok log
This commit is contained in:
parent
9285dbbd49
commit
d114c813fb
1 changed files with 2 additions and 2 deletions
|
|
@ -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)*));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue