From 39cbcfb55eb391a008c0571e8ad67fc703bac759 Mon Sep 17 00:00:00 2001 From: Colin Clark Date: Tue, 26 Sep 2017 18:42:37 +0100 Subject: [PATCH] Do not send debug data to terminal When running Geeqie from the terminal, a user sees irrelevant messages and when debugging the window gets clogged with unnecessary data. The log window - or log file - contains all debug output anyway. --- src/ui_fileops.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui_fileops.c b/src/ui_fileops.c index 99a82166..9ea618d7 100644 --- a/src/ui_fileops.c +++ b/src/ui_fileops.c @@ -57,7 +57,6 @@ void print_term(const gchar *text_utf8) gchar *text_l; text_l = g_locale_from_utf8(text_utf8, -1, NULL, NULL, NULL); - fputs((text_l) ? text_l : text_utf8, stderr); if(command_line && command_line->ssi) secure_fputs(command_line->ssi, (text_l) ? text_l : text_utf8); g_free(text_l); -- 2.20.1