From 27d00b15c70781b7b3d5ae38a720385b8d721125 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 5 Nov 2019 13:56:25 +0100 Subject: [PATCH] vt: log hex version of printed character too --- vt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vt.c b/vt.c index 3a720a5c..1b529463 100644 --- a/vt.c +++ b/vt.c @@ -845,7 +845,7 @@ action_print(struct terminal *term, uint8_t c) { cell->wc = vt100_0[c - 0x60]; } else { - //LOG_DBG("print: ASCII: %c", c); + // LOG_DBG("print: ASCII: %c (0x%04x)", c, c); cell->wc = c; }