summaryrefslogtreecommitdiff
path: root/src/journal/sd-journal.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-08-26 21:47:46 +0200
committerLennart Poettering <lennart@poettering.net>2014-08-26 21:47:46 +0200
commit36202fd2bc252616966166c98ccb0e0e5ece1fc9 (patch)
tree185d4f546b3b573b555308b38c2e19b1d0fcaa4a /src/journal/sd-journal.c
parent1b6d7fa742e303611dff8d7ebfa86ee5fb8b7dc7 (diff)
sd-journal: never log anything by default from a library
Diffstat (limited to 'src/journal/sd-journal.c')
-rw-r--r--src/journal/sd-journal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c
index b9ec90230d..80ff8fef57 100644
--- a/src/journal/sd-journal.c
+++ b/src/journal/sd-journal.c
@@ -2557,7 +2557,7 @@ _public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_
/* Let's do the type check by hand, since we used 0 context above. */
if (o->object.type != OBJECT_DATA) {
- log_error("%s:offset " OFSfmt ": object has type %d, expected %d",
+ log_debug("%s:offset " OFSfmt ": object has type %d, expected %d",
j->unique_file->path, j->unique_offset,
o->object.type, OBJECT_DATA);
return -EBADMSG;