mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
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:
parent
e932b07423
commit
c2b4f4daa6
1 changed files with 1 additions and 1 deletions
2
main.c
2
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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue