Skip to content

Commit f8d206f

Browse files
committed
Change trace color from bright black to cyan
This makes it much more readable when using lower-contrast dark themes.
1 parent 1ec099b commit f8d206f

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
@@ -51,7 +51,7 @@ impl Formatter {
5151
pub fn default_level_style(&self, level: Level) -> Style {
5252
let mut level_style = self.style();
5353
match level {
54-
Level::Trace => level_style.set_color(Color::Black).set_intense(true),
54+
Level::Trace => level_style.set_color(Color::Cyan),
5555
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),

0 commit comments

Comments
 (0)