main: log cell width/height at info level, not debug

This complements the INFO logs from the renderer when the terminal is
resized.
This commit is contained in:
Daniel Eklöf 2019-08-28 21:01:36 +02:00
parent e932b07423
commit c2b4f4daa6
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
main.c
View file

@ -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) {