From 86faed473dfa6d191e7381391fa82c6d857187f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 21 Jul 2019 15:36:32 +0200 Subject: [PATCH] render: make "new buffer" a debug log message, not warning --- render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render.c b/render.c index f9c7fbca..db9881a3 100644 --- a/render.c +++ b/render.c @@ -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;