From bbb7b60b177e5d9c223878e48d752dcabcda21a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 1 Feb 2020 19:29:14 +0100 Subject: [PATCH] vt: collect (intermediate): log _which_ character we collected --- vt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vt.c b/vt.c index cb3de1fd..155d4f7e 100644 --- a/vt.c +++ b/vt.c @@ -259,7 +259,7 @@ action_param(struct terminal *term, uint8_t c) static void action_collect(struct terminal *term, uint8_t c) { - LOG_DBG("collect"); + LOG_DBG("collect: %c", c); if (term->vt.private[0] == 0) term->vt.private[0] = c; else if (term->vt.private[1] == 0)