diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-09-27 23:27:10 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-09-28 00:55:24 +0200 |
commit | 08ace05beb1d09b6ebc5e9cafc2b972b39fa2437 (patch) | |
tree | be7290b127df8b2bf4baed5b20659d79527bbc13 /src/systemctl | |
parent | 8f14c8327b1c2b578bbf1235723a77931c3d0223 (diff) |
logs-show: various cleanups
Among other cleanups this introduces a threshold for the size of binary
blobs we serialize as integer arrays in the JSON output. THis can be
disabled via --all.
Diffstat (limited to 'src/systemctl')
-rw-r--r-- | src/systemctl/systemctl.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index cc9c775251..62c32cd31a 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -2279,9 +2279,13 @@ static void print_status_info(UnitStatusInfo *i) { on_tty() * OUTPUT_COLOR; printf("\n"); - show_journal_by_unit(i->id, arg_output, 0, + show_journal_by_unit(stdout, + i->id, + arg_output, + 0, i->inactive_exit_timestamp_monotonic, - arg_lines, flags); + arg_lines, + flags); } if (i->need_daemon_reload) |