summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/amount.cc8
-rw-r--r--src/commodity.cc6
2 files changed, 8 insertions, 6 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() &&
diff --git a/src/commodity.cc b/src/commodity.cc
index 7d473d74..565204fd 100644
--- a/src/commodity.cc
+++ b/src/commodity.cc
@@ -89,6 +89,8 @@ commodity_t::find_price(const optional<commodity_t&>& commodity,
const optional<datetime_t>& moment,
const optional<datetime_t>& oldest) const
{
+ DEBUG("commodity.price.find", "commodity_t::find_price(" << symbol() << ")");
+
optional<commodity_t&> target;
if (commodity)
target = commodity;
@@ -102,14 +104,14 @@ commodity_t::find_price(const optional<commodity_t&>& commodity,
base_t::time_and_commodity_t(base_t::optional_time_pair_t(moment, oldest),
commodity ? &(*commodity) : NULL);
- DEBUG("history.find", "looking for memoized args: "
+ DEBUG("commodity.price.find", "looking for memoized args: "
<< (moment ? format_datetime(*moment) : "NONE") << ", "
<< (oldest ? format_datetime(*oldest) : "NONE") << ", "
<< (commodity ? commodity->symbol() : "NONE"));
{
base_t::memoized_price_map::iterator i = base->price_map.find(*pair);
if (i != base->price_map.end()) {
- DEBUG("history.find", "found! returning: "
+ DEBUG("commodity.price.find", "found! returning: "
<< ((*i).second ? (*i).second->price : amount_t(0L)));
return (*i).second;
}