diff options
author | nicm <nicm> | 2014-03-31 21:42:45 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-03-31 21:42:45 +0000 |
commit | 48478ea0a990cc14d61722f9f8d3f1490d8f417a (patch) | |
tree | df43e4a2b0e6902ebe725687cde171a7b6365e45 /input-keys.c | |
parent | 7bdb675469336e1c8c7c5039aff369f8245dc450 (diff) | |
download | rtmux-48478ea0a990cc14d61722f9f8d3f1490d8f417a.tar.gz rtmux-48478ea0a990cc14d61722f9f8d3f1490d8f417a.tar.bz2 rtmux-48478ea0a990cc14d61722f9f8d3f1490d8f417a.zip |
Remove log_debug2 as well and simplify log.c.
Diffstat (limited to 'input-keys.c')
-rw-r--r-- | input-keys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/input-keys.c b/input-keys.c index 2de48e97..9247a995 100644 --- a/input-keys.c +++ b/input-keys.c @@ -143,7 +143,7 @@ input_key(struct window_pane *wp, int key) char *out; u_char ch; - log_debug2("writing key 0x%x", key); + log_debug("writing key 0x%x", key); /* * If this is a normal 7-bit key, just send it, with a leading escape @@ -186,11 +186,11 @@ input_key(struct window_pane *wp, int key) break; } if (i == nitems(input_keys)) { - log_debug2("key 0x%x missing", key); + log_debug("key 0x%x missing", key); return; } dlen = strlen(ike->data); - log_debug2("found key 0x%x: \"%s\"", key, ike->data); + log_debug("found key 0x%x: \"%s\"", key, ike->data); /* Prefix a \033 for escape. */ if (key & KEYC_ESCAPE) |