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-syslog.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-syslog.c')
-rw-r--r-- | src/journal/journald-syslog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-syslog.c b/src/journal/journald-syslog.c index afeb8bd129..656dc72bb9 100644 --- a/src/journal/journald-syslog.c +++ b/src/journal/journald-syslog.c @@ -441,7 +441,7 @@ int server_open_syslog_socket(Server *s) { r = bind(s->syslog_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; } |