summaryrefslogtreecommitdiffstats
path: root/collectors/systemd-journal.plugin
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@netdata.cloud>2023-09-13 00:24:40 +0300
committerGitHub <noreply@github.com>2023-09-13 00:24:40 +0300
commite70e50815ba740edc64d9b3df31e5b79afbffd71 (patch)
tree13107ddf7f3c65f5e1e3bab84138a4427ee5b917 /collectors/systemd-journal.plugin
parent69894b1bd32de8c32c8f4880efff993fa9f496f0 (diff)
streaming logs (#15948)
Diffstat (limited to 'collectors/systemd-journal.plugin')
-rw-r--r--collectors/systemd-journal.plugin/systemd-journal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/systemd-journal.plugin/systemd-journal.c b/collectors/systemd-journal.plugin/systemd-journal.c
index d58763c2ee..aa2ecd5c4d 100644
--- a/collectors/systemd-journal.plugin/systemd-journal.c
+++ b/collectors/systemd-journal.plugin/systemd-journal.c
@@ -96,7 +96,7 @@ int systemd_journal_query(BUFFER *wb, FACETS *facets, usec_t after_ut, usec_t be
size_t excess_rows_allowed = 100;
if(sd_journal_seek_realtime_usec(j, before_ut) < 0) {
- netdata_log_error("SYSTEMD-JOURNAL: Failed to seek to %llu", before_ut);
+ netdata_log_error("SYSTEMD-JOURNAL: Failed to seek to " PRIu64, before_ut);
if(sd_journal_seek_tail(j) < 0) {
netdata_log_error("SYSTEMD-JOURNAL: Failed to seek to journal's tail");
goto finalize;