X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fjournal%2Fjournald-stream.c;h=580f74624946224260e6cc944ba7d6691b76003b;hb=0a1beeb64207eaa88ab9236787b1cbc2f704ae14;hp=76580f8263a161f4c323bfc2e2b4b5d574a62cc9;hpb=b4d23205f238e06aaa31264628e20669e714acad;p=elogind.git diff --git a/src/journal/journald-stream.c b/src/journal/journald-stream.c index 76580f826..580f74624 100644 --- a/src/journal/journald-stream.c +++ b/src/journal/journald-stream.c @@ -408,13 +408,13 @@ static int stdout_stream_new(sd_event_source *es, int listen_fd, uint32_t revent r = sd_event_add_io(s->event, &stream->event_source, fd, EPOLLIN, stdout_stream_process, stream); if (r < 0) { - log_error("Failed to add stream to event loop: %s", strerror(-r)); + log_error_errno(-r, "Failed to add stream to event loop: %m"); goto fail; } r = sd_event_source_set_priority(stream->event_source, SD_EVENT_PRIORITY_NORMAL+5); if (r < 0) { - log_error("Failed to adjust stdout event source priority: %s", strerror(-r)); + log_error_errno(-r, "Failed to adjust stdout event source priority: %m"); goto fail; } @@ -465,13 +465,13 @@ int server_open_stdout_socket(Server *s) { r = sd_event_add_io(s->event, &s->stdout_event_source, s->stdout_fd, EPOLLIN, stdout_stream_new, s); if (r < 0) { - log_error("Failed to add stdout server fd to event source: %s", strerror(-r)); + log_error_errno(-r, "Failed to add stdout server fd to event source: %m"); return r; } r = sd_event_source_set_priority(s->stdout_event_source, SD_EVENT_PRIORITY_NORMAL+10); if (r < 0) { - log_error("Failed to adjust priority of stdout server event source: %s", strerror(-r)); + log_error_errno(-r, "Failed to adjust priority of stdout server event source: %m"); return r; }