1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-26 03:22:00 +03:00

journalctl: no color for --reboot-- when not on tty

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-06-05 20:33:42 -04:00
parent 2bc8ca0ca2
commit 3001c74580

View File

@ -1333,12 +1333,14 @@ int main(int argc, char *argv[]) {
if (!arg_merge) {
sd_id128_t boot_id;
const char *color_on = on_tty() ? ANSI_HIGHLIGHT_ON : "",
*color_off = on_tty() ? ANSI_HIGHLIGHT_OFF : "";
r = sd_journal_get_monotonic_usec(j, NULL, &boot_id);
if (r >= 0) {
if (previous_boot_id_valid &&
!sd_id128_equal(boot_id, previous_boot_id))
printf(ANSI_HIGHLIGHT_ON "-- Reboot --" ANSI_HIGHLIGHT_OFF "\n");
printf("%s-- Reboot --%s\n", color_on, color_off);
previous_boot_id = boot_id;
previous_boot_id_valid = true;