From 02cd8d2330abf589679d089bfcf20ac76825f658 Mon Sep 17 00:00:00 2001 From: Dmitry Podgorny Date: Tue, 23 Jun 2015 22:03:09 +0000 Subject: [PATCH] ui: decreased log level of the message on resizing Resizing of terminal window can produce many logs "Resizing UI". Also they are not so informative to be shown without -l DEBUG. --- src/ui/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/core.c b/src/ui/core.c index ec5ae9af..a7e46437 100644 --- a/src/ui/core.c +++ b/src/ui/core.c @@ -254,7 +254,7 @@ ui_resize(void) resizeterm(w.ws_row, w.ws_col); refresh(); - log_info("Resizing UI"); + log_debug("Resizing UI"); title_bar_resize(); wins_resize_all(); status_bar_resize();