From 2dc774fb17fa558fe9faf1a23cb186b2940f42f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 17 Jan 2021 16:41:22 +0100 Subject: [PATCH] render: remove debug logging --- render.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/render.c b/render.c index 1cd8d364..254057dc 100644 --- a/render.c +++ b/render.c @@ -2568,10 +2568,8 @@ fdm_tiocswinsz(struct fdm *fdm, int fd, int events, void *data) { struct terminal *term = data; - if (events & EPOLLIN) { + if (events & EPOLLIN) tiocswinsz(term); - LOG_WARN("DELAYED"); - } fdm_del(fdm, fd); term->window->resize_timeout_fd = -1; @@ -2586,7 +2584,6 @@ send_dimensions_to_client(struct terminal *term) if (!win->is_resizing || term->conf->tweak.resize_delay_ms == 0) { /* Send new dimensions to client immediately */ tiocswinsz(term); - LOG_ERR("IMMEDIATELY"); /* And make sure to reset and deallocate a lingering timer */ if (win->resize_timeout_fd >= 0) {