summaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2017-01-18 17:35:41 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2017-01-18 17:35:41 +0000
commitb98b4e23a37ea39bdc6080831935873d8efa1126 (patch)
tree6f3dcc82696c10d90024c5c8724b05d435a04f63 /proc.c
parent7e4908f751f30473435da7abb8054f24971d688e (diff)
Put version in log in portable tmux.
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proc.c b/proc.c
index 5ed0a517..48890809 100644
--- a/proc.c
+++ b/proc.c
@@ -195,8 +195,8 @@ proc_start(const char *name, struct event_base *base, int forkflag,
if (uname(&u) < 0)
memset(&u, 0, sizeof u);
- log_debug("%s started (%ld): socket %s, protocol %d", name,
- (long)getpid(), socket_path, PROTOCOL_VERSION);
+ log_debug("%s started (%ld): version %s, socket %s, protocol %d", name,
+ (long)getpid(), VERSION, socket_path, PROTOCOL_VERSION);
log_debug("on %s %s %s; libevent %s (%s)", u.sysname, u.release,
u.version, event_get_version(), event_get_method());