From cd1667691176719736f64cda40043ff974af249e Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Fri, 31 Mar 2017 15:21:29 +0200 Subject: [PATCH] Make "trying to match mapping" debug priority 4 Instantly makes debug output _much_ more usable. --- src/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.cpp b/src/input.cpp index 80bc9750a..1cdb151b3 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -409,7 +409,7 @@ static bool input_mapping_is_match(const input_mapping_t &m) { wchar_t c = 0; int j; - debug(2, L"trying to match mapping %ls", escape_string(m.seq.c_str(), ESCAPE_ALL).c_str()); + debug(4, L"trying to match mapping %ls", escape_string(m.seq.c_str(), ESCAPE_ALL).c_str()); const wchar_t *str = m.seq.c_str(); for (j = 0; str[j] != L'\0'; j++) { bool timed = (j > 0 && iswcntrl(str[0]));