diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-03-03 19:49:40 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-18 21:44:59 -0400 |
commit | 6b9732b2bf0499c5e4ea8a9d4f6051d98033f680 (patch) | |
tree | ab1b52d98a5370d8a75f83fdcdd56fd936cfe946 /src/journal/journald-stream.c | |
parent | 3fb97a58fa3f233cc980cdc4ae33230a361b3c34 (diff) |
Be more verbose when bind or listen fails
Also be more verbose in devnode_acl_all().
Diffstat (limited to 'src/journal/journald-stream.c')
-rw-r--r-- | src/journal/journald-stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journald-stream.c b/src/journal/journald-stream.c index 89da150a60..8a983d84d9 100644 --- a/src/journal/journald-stream.c +++ b/src/journal/journald-stream.c @@ -450,14 +450,14 @@ int server_open_stdout_socket(Server *s) { r = bind(s->stdout_fd, &sa.sa, offsetof(union sockaddr_union, un.sun_path) + strlen(sa.un.sun_path)); if (r < 0) { - log_error("bind() failed: %m"); + log_error("bind(%s) failed: %m", sa.un.sun_path); return -errno; } chmod(sa.un.sun_path, 0666); if (listen(s->stdout_fd, SOMAXCONN) < 0) { - log_error("listen() failed: %m"); + log_error("listen(%s) failed: %m", sa.un.sun_path); return -errno; } } else |