summaryrefslogtreecommitdiffstats
path: root/input-keys.c
diff options
context:
space:
mode:
authornicm <nicm>2014-03-31 21:42:45 +0000
committernicm <nicm>2014-03-31 21:42:45 +0000
commit48478ea0a990cc14d61722f9f8d3f1490d8f417a (patch)
treedf43e4a2b0e6902ebe725687cde171a7b6365e45 /input-keys.c
parent7bdb675469336e1c8c7c5039aff369f8245dc450 (diff)
Remove log_debug2 as well and simplify log.c.
Diffstat (limited to 'input-keys.c')
-rw-r--r--input-keys.c6
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)