aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/common/pcu_sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/pcu_sock.c b/src/common/pcu_sock.c
index 62f18a78..afd880f7 100644
--- a/src/common/pcu_sock.c
+++ b/src/common/pcu_sock.c
@@ -861,8 +861,8 @@ int pcu_sock_init(const char *path)
bfd->fd = osmo_sock_unix_init(SOCK_SEQPACKET, 0, path,
OSMO_SOCK_F_BIND);
if (bfd->fd < 0) {
- LOGP(DPCU, LOGL_ERROR, "Could not create unix socket: %s\n",
- strerror(errno));
+ LOGP(DPCU, LOGL_ERROR, "Could not create %s unix socket: %s\n",
+ path, strerror(errno));
talloc_free(state);
return -1;
}