add debug messages

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6482 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2002-01-02 10:09:03 +00:00
parent 8048ad9824
commit 00c2494f9b
2 changed files with 3 additions and 1 deletions

View File

@ -431,6 +431,7 @@ pgend_account_commit_edit (Backend * bend,
{
parent = xaccAccountGetParent(acct);
if (parent) parent->saved = 1;
LEAVE ("account not written because not dirty");
return;
}

View File

@ -142,7 +142,7 @@ pgendStoreTransactionNoLock (PGBackend *be, Transaction *trans,
char * p;
if (!be || !trans) return;
ENTER ("trans=%p", trans);
ENTER ("trans=%p do_check=%d", trans, do_check_version);
/* don't update the database if the database is newer ... */
if (do_check_version)
@ -217,6 +217,7 @@ pgendStoreTransactionNoLock (PGBackend *be, Transaction *trans,
/* Update the rest */
start = xaccTransGetSplitList(trans);
PINFO ("split-list=%p, do_free=%d", start, trans->do_free);
if ((start) && !(trans->do_free))
{
gnc_commodity *com;