mirror of
https://github.com/starship/starship.git
synced 2026-06-23 02:05:51 +07:00
refactor(log): change output colors to shades of blue for trace and debug to make them more visible (#2299)
This commit is contained in:
committed by
GitHub
parent
118f18785a
commit
3772b4846d
+2
-2
@@ -109,8 +109,8 @@ impl log::Log for StarshipLogger {
|
||||
eprintln!(
|
||||
"[{}] - ({}): {}",
|
||||
match record.level() {
|
||||
Level::Trace => Color::Black.dimmed().paint(format!("{}", record.level())),
|
||||
Level::Debug => Color::Black.paint(format!("{}", record.level())),
|
||||
Level::Trace => Color::Blue.dimmed().paint(format!("{}", record.level())),
|
||||
Level::Debug => Color::Cyan.paint(format!("{}", record.level())),
|
||||
Level::Info => Color::White.paint(format!("{}", record.level())),
|
||||
Level::Warn => Color::Yellow.paint(format!("{}", record.level())),
|
||||
Level::Error => Color::Red.paint(format!("{}", record.level())),
|
||||
|
||||
Reference in New Issue
Block a user