From 713f3b05f3f0579c4ccbba2d93affaf672a3a473 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 8 Feb 2017 13:53:32 +0000 Subject: Improve some of the logging on resize. --- tty.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tty.c') diff --git a/tty.c b/tty.c index b075647a..f712b17a 100644 --- a/tty.c +++ b/tty.c @@ -142,6 +142,7 @@ tty_resize(struct tty *tty) sx = 80; sy = 24; } + log_debug("%s: %s now %ux%u", __func__, tty->path, sx, sy); if (!tty_set_size(tty, sx, sy)) return (0); -- cgit