From e6d9eb7c9e20afd8ee135ddc5e94e291e12721e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 1 Jul 2019 21:15:06 +0200 Subject: [PATCH] main: log resize event as INFO --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 5c2876e6..b389d2da 100644 --- a/main.c +++ b/main.c @@ -482,8 +482,8 @@ resize(struct context *c, int width, int height) }; } - LOG_DBG("resize: %dx%d, grid: cols=%d, rows=%d", - c->width, c->height, c->term.cols, c->term.rows); + LOG_INFO("resize: %dx%d, grid: cols=%d, rows=%d", + c->width, c->height, c->term.cols, c->term.rows); /* Update environment variables */ char cols_s[12], rows_s[12];