]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journactl: show info about journal range only at debug level (#21775)
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 14 Dec 2021 21:30:15 +0000 (22:30 +0100)
committerGitHub <noreply@github.com>
Tue, 14 Dec 2021 21:30:15 +0000 (06:30 +0900)
The message that the "journal begins … ends …" has been always confusing to
users. (Before b91ae210e62 it was "logs begin … end …" which was arguably even
more confusing, but really the change in b91ae210e62 didn't substantially change
this.)

When the range shown is limited (by -e, -f, --since, or other options), it
doesn't really matter to the user what the oldest entries are, since they are
purposefully limiting the range. In fact, if we are showing the last few
entries with -e or -f, knowing that many months the oldest entries have is
completely useless.

And when such options are *not* used, the first entry generally corresponds to
the beginning of the range shown, and the last entry corresponds to the end of
that range. So again, it's not particularly useful, except when debugging
journalctl or such. Let's just treat it as a debug message.

Fixes #21491.

src/journal/journalctl.c

index 5232351e3d4da11c656a8c4210c81687c901391c..d564d542d48012a609a85484b2d589c1b9ae8ee0 100644 (file)
@@ -2597,7 +2597,7 @@ int main(int argc, char *argv[]) {
         if (!arg_follow)
                 pager_open(arg_pager_flags);
 
-        if (!arg_quiet && (arg_lines != 0 || arg_follow)) {
+        if (!arg_quiet && (arg_lines != 0 || arg_follow) && DEBUG_LOGGING) {
                 usec_t start, end;
                 char start_buf[FORMAT_TIMESTAMP_MAX], end_buf[FORMAT_TIMESTAMP_MAX];