render: make "new buffer" a debug log message, not warning

This commit is contained in:
Daniel Eklöf 2019-07-21 15:36:32 +02:00
parent 9150aa5d43
commit 86faed473d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -299,7 +299,7 @@ grid_render(struct terminal *term)
static struct buffer *last_buf = NULL;
if (last_buf != buf || false) {
if (last_buf != NULL) {
LOG_WARN("new buffer");
LOG_DBG("new buffer");
/* Fill area outside the cell grid with the default background color */
int rmargin = term->cols * term->cell_width;