From c8ab2d7a8f2f23809b90b01366be3c15a9237ded Mon Sep 17 00:00:00 2001 From: Bill Gribble Date: Wed, 7 Nov 2001 22:42:56 +0000 Subject: [PATCH] o, bugger. Forgot to remove some debug statements. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5789 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnc-module/gnc-module.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gnc-module/gnc-module.c b/src/gnc-module/gnc-module.c index b0818a46a9..86428fbb7c 100644 --- a/src/gnc-module/gnc-module.c +++ b/src/gnc-module/gnc-module.c @@ -242,7 +242,6 @@ GNCModuleInfo * gnc_module_get_info(const char * fullpath) { lt_dlhandle handle; - printf("gnc-module: (init) lt_dlopen '%s'\n", fullpath); handle = lt_dlopen(fullpath); if(handle) @@ -443,7 +442,6 @@ gnc_module_load(char * module_name, gint interface) GNCModuleInfo * modinfo = gnc_module_locate(module_name, interface); lt_dlhandle handle = NULL; - printf("gnc-module: (load) dlopen '%s'\n", modinfo->module_filepath); if(modinfo && ((handle = lt_dlopen(modinfo->module_filepath)) != NULL)) { lt_ptr initfunc = lt_dlsym(handle, "gnc_module_init");