diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2014-07-01 14:14:23 -0400 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2014-07-01 14:14:23 -0400 |
commit | 746ca1fe6d15528b444f35e6a65d3c93e4976894 (patch) | |
tree | ba9ee972ca3e874d06fa8dd53d1bd84bf6c12fd4 /src/annotate.cc | |
parent | 1c6e7f410b62e7d8289992600d2f5b289a214290 (diff) | |
download | fork-ledger-746ca1fe6d15528b444f35e6a65d3c93e4976894.tar.gz fork-ledger-746ca1fe6d15528b444f35e6a65d3c93e4976894.tar.bz2 fork-ledger-746ca1fe6d15528b444f35e6a65d3c93e4976894.zip |
Unify debugging categories
Debugging categories follow the filename, which in this case is singular
(rather than plural) "account" and "amount".
Diffstat (limited to 'src/annotate.cc')
-rw-r--r-- | src/annotate.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/annotate.cc b/src/annotate.cc index 0cb7a24e..89363dd5 100644 --- a/src/annotate.cc +++ b/src/annotate.cc @@ -187,8 +187,8 @@ void annotation_t::parse(std::istream& in) } while (true); #if DEBUG_ON - if (SHOW_DEBUG("amounts.commodities") && *this) { - DEBUG("amounts.commodities", + if (SHOW_DEBUG("amount.commodities") && *this) { + DEBUG("amount.commodities", "Parsed commodity annotations: " << std::endl << *this); } #endif |