diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-05 20:24:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-05 20:24:41 +0000 |
commit | 0402ef2e317f04f32e2117a0e9a72c062d9f54fb (patch) | |
tree | f25bed0215e872e1a52776ed32791add161170b1 | |
parent | a9a22d7ede3e69c5dd95838d6cfee5fa3fb01951 (diff) | |
download | rtmux-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |