From b98b4e23a37ea39bdc6080831935873d8efa1126 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 18 Jan 2017 17:35:41 +0000 Subject: Put version in log in portable tmux. --- proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proc.c') 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()); -- cgit