Changeset 11366
- Timestamp:
- 2008-09-04 11:54:38 (3 months ago)
- Location:
- branches/opsynonym/xapian-core
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
matcher/localmatch.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/opsynonym/xapian-core/ChangeLog
r11361 r11366 1 Thu Sep 04 10:53:55 GMT 2008 Richard Boulton <richard@lemurconsulting.com> 2 3 * matcher/localmatch.cc: Change DEBUGLINE calls to LOGLINE. 4 1 5 Wed Jul 09 15:39:47 GMT 2008 Richard Boulton <richard@lemurconsulting.com> 2 6 -
branches/opsynonym/xapian-core/matcher/localmatch.cc
r10858 r11366 120 120 DEBUGCALL(MATCH, PostList *, "LocalSubMatch::make_synonym_postlist", 121 121 "[or_pl], [matcher], " << factor); 122 DEBUGLINE(MATCH, "or_pl->get_termfreq() = " << or_pl->get_termfreq_est());122 LOGLINE(MATCH, "or_pl->get_termfreq() = " << or_pl->get_termfreq_est()); 123 123 AutoPtr<SynonymPostList> res(new SynonymPostList(or_pl, matcher)); 124 124 AutoPtr<Xapian::Weight> wt; … … 164 164 Xapian::weight weight = boolean ? 0 : wt->get_maxpart(); 165 165 Xapian::MSet::Internal::TermFreqAndWeight info(tf, weight); 166 DEBUGLINE(MATCH, "Setting term_info[" << query->tname << "] to (" << tf << ", " << weight << ")");166 LOGLINE(MATCH, "Setting term_info[" << query->tname << "] to (" << tf << ", " << weight << ")"); 167 167 term_info.insert(make_pair(query->tname, info)); 168 168 } else if (!boolean) { 169 169 i->second.termweight += wt->get_maxpart(); 170 170 AssertEq(stats->get_termfreq(query->tname), i->second.termfreq); 171 DEBUGLINE(MATCH, "Increasing term_info[" << query->tname << "] to (" << i->second.termfreq << ", " << i->second.termweight << ")");171 LOGLINE(MATCH, "Increasing term_info[" << query->tname << "] to (" << i->second.termfreq << ", " << i->second.termweight << ")"); 172 172 } 173 173
