From 0402ef2e317f04f32e2117a0e9a72c062d9f54fb Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 5 Mar 2009 20:24:41 +0000 Subject: [PATCH] Log socket path so I can tell which tmux log is which. --- server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ -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;