aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-03-05 20:24:41 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-03-05 20:24:41 +0000
commit0402ef2e317f04f32e2117a0e9a72c062d9f54fb (patch)
treef25bed0215e872e1a52776ed32791add161170b1
parenta9a22d7ede3e69c5dd95838d6cfee5fa3fb01951 (diff)
downloadrtmux-0402ef2e317f04f32e2117a0e9a72c062d9f54fb.tar.gz
rtmux-0402ef2e317f04f32e2117a0e9a72c062d9f54fb.tar.bz2
rtmux-0402ef2e317f04f32e2117a0e9a72c062d9f54fb.zip
Log socket path so I can tell which tmux log is which.
-rw-r--r--server.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server.c b/server.c
index c92278d6..3fb633c0 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.125 2009-03-04 17:33:30 nicm Exp $ */
+/* $Id: server.c,v 1.126 2009-03-05 20:24:41 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -176,6 +176,7 @@ server_start(const char *path)
setproctitle("server (%s)", path);
#endif
log_debug("server started, pid %ld", (long) getpid());
+ log_debug("socket path %s", socket_path);
memset(&sa, 0, sizeof sa);
sa.sun_family = AF_UNIX;