From c44d2d854fb2d7ed305b14d9a57b1da1c45e425c Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 1 Dec 2011 23:47:08 +0000 Subject: [PATCH] Log terminal overrides. --- tty-term.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tty-term.c b/tty-term.c index 201d0e1d..5338d0d9 100644 --- a/tty-term.c +++ b/tty-term.c @@ -263,6 +263,8 @@ tty_term_override(struct tty_term *term, const char *overrides) } else val = xstrdup(""); + log_debug("%s override: %s %s", + term->name, entstr, removeflag ? "@" : val); for (i = 0; i < NTTYCODE; i++) { ent = &tty_term_codes[i]; if (strcmp(entstr, ent->name) != 0)