mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Change log-leveling for a few messages.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15547 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -176,9 +176,9 @@ error_handler(const char *msg)
|
||||
gboolean
|
||||
gfec_try_load(gchar *fn)
|
||||
{
|
||||
g_message("looking for %s", fn);
|
||||
g_debug("looking for %s", fn);
|
||||
if (g_file_test(fn, G_FILE_TEST_EXISTS)) {
|
||||
g_message("trying to load %s", fn);
|
||||
g_debug("trying to load %s", fn);
|
||||
error_in_scm_eval = FALSE;
|
||||
gfec_eval_file(fn, error_handler);
|
||||
return !error_in_scm_eval;
|
||||
|
||||
@@ -105,11 +105,11 @@ gnc_engine_init(int argc, char ** argv)
|
||||
}
|
||||
else
|
||||
{
|
||||
g_message("failed to load %s from %s\n", lib->lib, pkglibdir);
|
||||
g_warning("failed to load %s from %s\n", lib->lib, pkglibdir);
|
||||
/* If this is a required library, stop now! */
|
||||
if (lib->required)
|
||||
{
|
||||
g_message("required library %s not found.\n", lib->lib);
|
||||
g_critical("required library %s not found.\n", lib->lib);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1375,7 +1375,7 @@ gnc_split_register_save (SplitRegister *reg, gboolean do_commit)
|
||||
// FIXME: For that matter, how could an open pending
|
||||
// transaction ever not be the current trans?
|
||||
if (xaccTransIsOpen (pending_trans)) {
|
||||
g_message("Impossible? commiting pending %p", pending_trans);
|
||||
g_warning("Impossible? commiting pending %p", pending_trans);
|
||||
xaccTransCommitEdit (pending_trans);
|
||||
} else if (pending_trans)
|
||||
g_assert_not_reached();
|
||||
|
||||
Reference in New Issue
Block a user