Skip to content

Commit

Permalink
improve color
Browse files Browse the repository at this point in the history
  • Loading branch information
ewpratten committed Apr 12, 2024
1 parent 86c214c commit 60c1d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse/builtin/journal_json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub fn parse_line(line: &str) -> Option<ParsedLine> {
7 => RichText::new("DEBUG").color(Color32::LIGHT_BLUE),
_ => RichText::new("UNKNOWN").color(Color32::GRAY),
},
RichText::new(entry.unit.unwrap_or_default()).color(Color32::DARK_GREEN),
RichText::new(entry.unit.unwrap_or_default()),
RichText::new(entry.identifier.unwrap_or_default()).color(Color32::LIGHT_GREEN),
RichText::new(pid.to_string()).color(Color32::LIGHT_BLUE),
RichText::new(entry.message).color(Color32::WHITE).weak(),
Expand Down

0 comments on commit 60c1d2a

Please sign in to comment.