From 67df9b7a06d749fdd84f19f7d75ccf0d743f6d72 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 5 Dec 2018 18:42:32 +0100 Subject: [PATCH] logs-show: use grey color for de-emphasizing journal log output --- src/shared/logs-show.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/shared/logs-show.c b/src/shared/logs-show.c index 4076b9e..525a948 100644 --- a/src/shared/logs-show.c +++ b/src/shared/logs-show.c @@ -171,6 +171,10 @@ static bool print_multiline( color_on = ANSI_HIGHLIGHT; color_off = ANSI_NORMAL; highlight_on = ANSI_HIGHLIGHT_RED; + } else if (priority >= LOG_DEBUG) { + color_on = ANSI_GREY; + color_off = ANSI_NORMAL; + highlight_on = ANSI_HIGHLIGHT_RED; } } -- 2.7.4