Unify debugging categories

Debugging categories follow the filename, which in this case is singular
(rather than plural) "account" and "amount".
This commit is contained in:
Martin Michlmayr 2014-07-01 14:14:23 -04:00
parent 1c6e7f410b
commit 746ca1fe6d
3 changed files with 10 additions and 10 deletions

View file

@ -301,7 +301,7 @@ void amount_t::_copy(const amount_t& amt)
quantity = new bigint_t(*amt.quantity); quantity = new bigint_t(*amt.quantity);
} else { } else {
quantity = amt.quantity; quantity = amt.quantity;
DEBUG("amounts.refs", DEBUG("amount.refs",
quantity << " refc++, now " << (quantity->refc + 1)); quantity << " refc++, now " << (quantity->refc + 1));
quantity->refc++; quantity->refc++;
} }
@ -339,7 +339,7 @@ void amount_t::_release()
{ {
VERIFY(valid()); VERIFY(valid());
DEBUG("amounts.refs", quantity << " refc--, now " << (quantity->refc - 1)); DEBUG("amount.refs", quantity << " refc--, now " << (quantity->refc - 1));
if (--quantity->refc == 0) { if (--quantity->refc == 0) {
if (quantity->has_flags(BIGINT_BULK_ALLOC)) if (quantity->has_flags(BIGINT_BULK_ALLOC))
@ -928,7 +928,7 @@ void amount_t::annotate(const annotation_t& details)
} }
assert(this_base); assert(this_base);
DEBUG("amounts.commodities", "Annotating commodity for amount " DEBUG("amount.commodities", "Annotating commodity for amount "
<< *this << std::endl << details); << *this << std::endl << details);
if (commodity_t * ann_comm = if (commodity_t * ann_comm =
@ -939,7 +939,7 @@ void amount_t::annotate(const annotation_t& details)
assert(false); assert(false);
#endif #endif
DEBUG("amounts.commodities", "Annotated amount is " << *this); DEBUG("amount.commodities", "Annotated amount is " << *this);
} }
bool amount_t::has_annotation() const bool amount_t::has_annotation() const

View file

@ -187,8 +187,8 @@ void annotation_t::parse(std::istream& in)
} while (true); } while (true);
#if DEBUG_ON #if DEBUG_ON
if (SHOW_DEBUG("amounts.commodities") && *this) { if (SHOW_DEBUG("amount.commodities") && *this) {
DEBUG("amounts.commodities", DEBUG("amount.commodities",
"Parsed commodity annotations: " << std::endl << *this); "Parsed commodity annotations: " << std::endl << *this);
} }
#endif #endif

View file

@ -204,9 +204,9 @@ void sorted_accounts_iterator::push_back(account_t& account)
compare_items<account_t>(sort_cmp)); compare_items<account_t>(sort_cmp));
#if DEBUG_ON #if DEBUG_ON
if (SHOW_DEBUG("accounts.sorted")) { if (SHOW_DEBUG("account.sorted")) {
foreach (account_t * acct, accounts_list.back()) foreach (account_t * acct, accounts_list.back())
DEBUG("accounts.sorted", DEBUG("account.sorted",
"Account (flat): " << acct->fullname()); "Account (flat): " << acct->fullname());
} }
#endif #endif
@ -237,9 +237,9 @@ void sorted_accounts_iterator::sort_accounts(account_t& account,
compare_items<account_t>(sort_cmp)); compare_items<account_t>(sort_cmp));
#if DEBUG_ON #if DEBUG_ON
if (SHOW_DEBUG("accounts.sorted")) { if (SHOW_DEBUG("account.sorted")) {
foreach (account_t * acct, deque) foreach (account_t * acct, deque)
DEBUG("accounts.sorted", "Account: " << acct->fullname()); DEBUG("account.sorted", "Account: " << acct->fullname());
} }
#endif #endif
} }