From 02ffa7a515e4ebfb219af8dadf656f4ff806d6eb Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 6 Mar 2012 01:59:47 -0600 Subject: Changed the category of a few DEBUG statements --- src/commodity.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/commodity.cc') 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, const optional& moment, const optional& oldest) const { + DEBUG("commodity.price.find", "commodity_t::find_price(" << symbol() << ")"); + optional target; if (commodity) target = commodity; @@ -102,14 +104,14 @@ commodity_t::find_price(const optional& 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; } -- cgit v1.2.3