Skip to content

Commit 1ec099b

Browse files
committed
Change debug color from white to blue
This makes it much more readable if the terminal background is a light color. Fixes issue #138
1 parent 68a1700 commit 1ec099b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fmt/writer/termcolor/extern_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl Formatter {
5252
let mut level_style = self.style();
5353
match level {
5454
Level::Trace => level_style.set_color(Color::Black).set_intense(true),
55-
Level::Debug => level_style.set_color(Color::White),
55+
Level::Debug => level_style.set_color(Color::Blue),
5656
Level::Info => level_style.set_color(Color::Green),
5757
Level::Warn => level_style.set_color(Color::Yellow),
5858
Level::Error => level_style.set_color(Color::Red).set_bold(true),

0 commit comments

Comments
 (0)