diff options
author | 2017-02-08 13:53:32 +0000 | |
---|---|---|
committer | 2017-02-08 13:53:32 +0000 | |
commit | d2f221915b721b002e4ce7ca55c0ef12551515fb (patch) | |
tree | 696d32fb58a13a7d73619b82488adb70ef83dfff /usr.bin/tmux/tty.c | |
parent | Due to non-blocking sockets, tls_handshake() could wait in a busy (diff) | |
download | wireguard-openbsd-d2f221915b721b002e4ce7ca55c0ef12551515fb.tar.xz wireguard-openbsd-d2f221915b721b002e4ce7ca55c0ef12551515fb.zip |
Improve some of the logging on resize.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 4e597ae4c5e..3eb14ed4ef2 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.234 2017/02/08 08:54:45 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.235 2017/02/08 13:53:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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); |