changeset 2617:f52892de98fb

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.
author Colin Clark <colin.clark@cclark.uk>
date Tue, 26 Sep 2017 18:42:37 +0100
parents ade287ae8e45
children 9e29be68f634
files src/ui_fileops.c
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ui_fileops.c	Tue Sep 26 11:27:32 2017 +0100
+++ b/src/ui_fileops.c	Tue Sep 26 18:42:37 2017 +0100
@@ -57,7 +57,6 @@
 	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);