summaryrefslogtreecommitdiffstats
path: root/input-keys.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2014-03-07 16:05:29 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2014-03-07 16:05:29 +0000
commitb1a87b2ee49028f7a35bc39db47833a82cd74e38 (patch)
tree100e56ef049c03191316f7365ddf9bd460558133 /input-keys.c
parentc5a30513edc6f108b6387ee9cf6f1cb9dc7a674c (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 7582a638..46c37d0b 100644
--- a/input-keys.c
+++ b/input-keys.c
@@ -142,7 +142,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
@@ -185,11 +185,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)