diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-07 01:42:13 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-07 04:10:21 +0100 |
commit | aaf53376aaac326b700fd3f8e28bbd842f0a9ed1 (patch) | |
tree | 5d929f365e967d9765d77828d13985fc2bb80d0a | |
parent | fix compiler warning (diff) | |
download | systemd-aaf53376aaac326b700fd3f8e28bbd842f0a9ed1.tar.gz systemd-aaf53376aaac326b700fd3f8e28bbd842f0a9ed1.tar.bz2 systemd-aaf53376aaac326b700fd3f8e28bbd842f0a9ed1.zip |
journald: remove inner loop debug message
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | src/journal/journal-file.c | 2 | ||||
-rw-r--r-- | src/systemd/sd-journal.h | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -21,6 +21,8 @@ Bugfixes: Features: +* move to LGPL2+ + * logind: selinux is borked... * logind: allow showing logout dialog from system diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 4de1daf6a..7ce633757 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -917,7 +917,7 @@ static int journal_file_link_entry(JournalFile *f, Object *o, uint64_t offset) { if (r < 0) return r; - log_error("=> %s seqnr=%lu n_entries=%lu", f->path, (unsigned long) o->entry.seqnum, (unsigned long) f->header->n_entries); + /* log_debug("=> %s seqnr=%lu n_entries=%lu", f->path, (unsigned long) o->entry.seqnum, (unsigned long) f->header->n_entries); */ if (f->header->head_entry_realtime == 0) f->header->head_entry_realtime = o->entry.realtime; diff --git a/src/systemd/sd-journal.h b/src/systemd/sd-journal.h index e7d1e013c..f805bf923 100644 --- a/src/systemd/sd-journal.h +++ b/src/systemd/sd-journal.h @@ -44,6 +44,7 @@ * - cryptographic hash * - think about manipulations of header * - implement audit gateway + * - implement kernel gatway */ /* Write to daemon */ |