diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-06 01:59:47 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-06 02:00:36 -0600 |
commit | 02ffa7a515e4ebfb219af8dadf656f4ff806d6eb (patch) | |
tree | fc808bb3e94fb70f6ad64f0e8e4c1dc7e2bfa8a8 /src/amount.cc | |
parent | 8ae2fb87211b2c1a0159480ea6908db2afa20189 (diff) | |
download | fork-ledger-02ffa7a515e4ebfb219af8dadf656f4ff806d6eb.tar.gz fork-ledger-02ffa7a515e4ebfb219af8dadf656f4ff806d6eb.tar.bz2 fork-ledger-02ffa7a515e4ebfb219af8dadf656f4ff806d6eb.zip |
Changed the category of a few DEBUG statements
Diffstat (limited to 'src/amount.cc')
-rw-r--r-- | src/amount.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/amount.cc b/src/amount.cc index 3ddb7672..f9e2309b 100644 --- a/src/amount.cc +++ b/src/amount.cc @@ -731,13 +731,13 @@ amount_t::value(const optional<datetime_t>& moment, { if (quantity) { #if defined(DEBUG_ON) - DEBUG("commodity.prices.find", + DEBUG("commodity.price.find", "amount_t::value of " << commodity().symbol()); if (moment) - DEBUG("commodity.prices.find", - "amount_t::value: moment = " << *moment); + DEBUG("commodity.price.find", + "amount_t::value: moment = " << *moment); if (in_terms_of) - DEBUG("commodity.prices.find", + DEBUG("commodity.price.find", "amount_t::value: in_terms_of = " << in_terms_of->symbol()); #endif if (has_commodity() && |