diff options
author | 2015-09-02 17:52:57 +0000 | |
---|---|---|
committer | 2015-09-02 17:52:57 +0000 | |
commit | b5b8dd9a5f6117e02c21579f845d273e1a5305a2 (patch) | |
tree | 9bb1533772cef20b5fe313a8024f83f7ad38676e | |
parent | A one line helper function is a little silly. (diff) | |
download | wireguard-openbsd-b5b8dd9a5f6117e02c21579f845d273e1a5305a2.tar.xz wireguard-openbsd-b5b8dd9a5f6117e02c21579f845d273e1a5305a2.zip |
Log pane which received input data.
-rw-r--r-- | usr.bin/tmux/input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 22a5cfcb67d..8ef18abdf9b 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.85 2015/09/01 19:50:09 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.86 2015/09/02 17:52:57 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -862,8 +862,8 @@ input_parse(struct window_pane *wp) notify_input(wp, evb); off = 0; - log_debug("%s: %s, %zu bytes: %.*s", __func__, ictx->state->name, len, - (int)len, buf); + log_debug("%s: %%%u %s, %zu bytes: %.*s", __func__, wp->id, + ictx->state->name, len, (int)len, buf); /* Parse the input. */ while (off < len) { |