From: David Herrmann Date: Thu, 27 Sep 2012 16:57:50 +0000 (+0200) Subject: tsm: vte: be less verbose about unhandled escapes X-Git-Tag: kmscon-7~463 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54064096d239fbd2a1f9212629cf4c7b0c934bb2;p=platform%2Fupstream%2Fkmscon.git tsm: vte: be less verbose about unhandled escapes This converts a warning into a debug message to avoid spending too much time in the logger when parsing unknown content. This speeds up "cat /dev/urandom" by like 1000x. Signed-off-by: David Herrmann --- diff --git a/src/tsm_vte.c b/src/tsm_vte.c index aed3039..358d610 100644 --- a/src/tsm_vte.c +++ b/src/tsm_vte.c @@ -736,7 +736,7 @@ static void do_execute(struct tsm_vte *vte, uint32_t ctrl) /* nothing to do here */ break; default: - llog_warn(vte, "unhandled control char %u", ctrl); + llog_debug(vte, "unhandled control char %u", ctrl); } }