Improve some of the logging on resize.

This commit is contained in:
nicm
2017-02-08 13:53:32 +00:00
parent cb80901d33
commit 713f3b05f3
2 changed files with 5 additions and 4 deletions

1
tty.c
View File

@ -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);