From fabd3553be3c4d7222f13af41cfd7b7b10abf099 Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Mon, 24 Sep 2012 17:06:03 +0000 Subject: [PATCH] Don't set the log file in gnc_module_init This should fix the logging to stderr since r22419. gnc_module_init used to change the log path to stderr. Presumably this was needed before, as logging used to be initialized after module initialization. This has now changed, so gnc_module_init can make use of qoflog settings as chosen by the user (which by default means logging to gnucash.trace). git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22425 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnc-module/gnc-module.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gnc-module/gnc-module.c b/src/gnc-module/gnc-module.c index 84b5f8f19a..c7c78662fa 100644 --- a/src/gnc-module/gnc-module.c +++ b/src/gnc-module/gnc-module.c @@ -131,7 +131,6 @@ gnc_module_system_init(void) if (loaded_modules) return; - qof_log_init_filename_special ("stderr"); loaded_modules = g_hash_table_new(g_direct_hash, g_direct_equal); /* now crawl the GNC_MODULE_PATH to find likely libraries */