vte: extend CSI debug message

Print the CSI command in debug messages so we can better understand what
escape commands were sent.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-02-05 16:03:13 +01:00
parent cdb3d112a6
commit 06286da4ef

View File

@ -282,7 +282,7 @@ static void parse_csi(struct kmscon_vte *vte, uint32_t val)
kmscon_console_erase_current_line(vte->con);
break;
default:
log_debug("vte: unhandled CSI sequence\n");
log_debug("vte: unhandled CSI sequence %c\n", val);
}
}