diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-06 05:04:22 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-06 05:04:22 -0400 |
commit | 6c01e4e0905007624fa6c68b598138cb0c919e76 (patch) | |
tree | f43e744e0245ede00be1be56084c15251307c328 /src/xact.cc | |
parent | 7548c7fe2cfbb3cc1a55cb42c3c2e12462f8a3f2 (diff) | |
download | fork-ledger-6c01e4e0905007624fa6c68b598138cb0c919e76.tar.gz fork-ledger-6c01e4e0905007624fa6c68b598138cb0c919e76.tar.bz2 fork-ledger-6c01e4e0905007624fa6c68b598138cb0c919e76.zip |
Simplified some debug code
Diffstat (limited to 'src/xact.cc')
-rw-r--r-- | src/xact.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xact.cc b/src/xact.cc index 6c10ac04..495e6410 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -685,16 +685,15 @@ void auto_xact_t::extend_xact(xact_base_t& xact) else amt = post_amount; +#if defined(DEBUG_ON) IF_DEBUG("xact.extend") { DEBUG("xact.extend", "Initial post on line " << initial_post->pos->beg_line << ": " << "amount " << initial_post->amount << " (precision " << initial_post->amount.precision() << ")"); -#if defined(DEBUG_ON) if (initial_post->amount.keep_precision()) DEBUG("xact.extend", " precision is kept"); -#endif DEBUG("xact.extend", "Posting on line " << post->pos->beg_line << ": " @@ -702,13 +701,12 @@ void auto_xact_t::extend_xact(xact_base_t& xact) << " (precision " << post_amount.precision() << " != " << amt.precision() << ")"); -#if defined(DEBUG_ON) if (post_amount.keep_precision()) DEBUG("xact.extend", " precision is kept"); if (amt.keep_precision()) DEBUG("xact.extend", " amt precision is kept"); -#endif } +#endif // defined(DEBUG_ON) account_t * account = post->account; string fullname = account->fullname(); |