main: log resize event as INFO

This commit is contained in:
Daniel Eklöf 2019-07-01 21:15:06 +02:00
parent 4b824d824c
commit e6d9eb7c9e
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
main.c
View file

@ -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];