diff options
author | Dmitry Podgorny <pasis.ua@gmail.com> | 2015-06-23 22:03:09 +0000 |
---|---|---|
committer | Dmitry Podgorny <pasis.ua@gmail.com> | 2015-06-23 22:03:09 +0000 |
commit | 02cd8d2330abf589679d089bfcf20ac76825f658 (patch) | |
tree | ab515b637e4aaa30816b5ee1ca2ac8899c2b7d4c | |
parent | 2d3537515d9b0dbba51265ed7819dd80b31a33d8 (diff) | |
download | profani-tty-02cd8d2330abf589679d089bfcf20ac76825f658.tar.gz |
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.
-rw-r--r-- | src/ui/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |