diff options
author | nicm <nicm> | 2017-02-08 13:53:32 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-08 13:53:32 +0000 |
commit | 713f3b05f3f0579c4ccbba2d93affaf672a3a473 (patch) | |
tree | 7d6ea9830e30492f2e39b8bb662098a7dc39b3a3 /tty.c | |
parent | cb80901d333d91fa1fc56d3eb33b520d7fb28d9d (diff) | |
download | rtmux-713f3b05f3f0579c4ccbba2d93affaf672a3a473.tar.gz rtmux-713f3b05f3f0579c4ccbba2d93affaf672a3a473.tar.bz2 rtmux-713f3b05f3f0579c4ccbba2d93affaf672a3a473.zip |
Improve some of the logging on resize.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |