From c2b4f4daa6f6e407f9856a3081b2d97d4efb567f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 28 Aug 2019 21:01:36 +0200 Subject: [PATCH] main: log cell width/height at info level, not debug This complements the INFO logs from the renderer when the terminal is resized. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 0710f933..60d041f1 100644 --- a/main.c +++ b/main.c @@ -630,7 +630,7 @@ main(int argc, char *const *argv) term.cell_width = (int)ceil(term.fextents.max_x_advance); term.cell_height = (int)ceil(term.fextents.height); - LOG_DBG("cell width=%d, height=%d", term.cell_width, term.cell_height); + LOG_INFO("cell width=%d, height=%d", term.cell_width, term.cell_height); term.wl.display = wl_display_connect(NULL); if (term.wl.display == NULL) {