From: Lennart Poettering Date: Wed, 5 Dec 2018 17:42:32 +0000 (+0100) Subject: logs-show: use grey color for de-emphasizing journal log output X-Git-Tag: v240~122^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11056%2Fhead;p=thirdparty%2Fsystemd.git logs-show: use grey color for de-emphasizing journal log output --- diff --git a/src/shared/logs-show.c b/src/shared/logs-show.c index 4076b9e1d5b..525a948f360 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; } }