Changeset 11366

Show
Ignore:
Timestamp:
2008-09-04 11:54:38 (3 months ago)
Author:
richard
Message:

matcher/localmatch.cc: Change DEBUGLINE calls to LOGLINE.

Location:
branches/opsynonym/xapian-core
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/opsynonym/xapian-core/ChangeLog

    r11361 r11366  
     1Thu Sep 04 10:53:55 GMT 2008  Richard Boulton <richard@lemurconsulting.com> 
     2 
     3        * matcher/localmatch.cc: Change DEBUGLINE calls to LOGLINE. 
     4 
    15Wed Jul 09 15:39:47 GMT 2008  Richard Boulton <richard@lemurconsulting.com> 
    26 
  • branches/opsynonym/xapian-core/matcher/localmatch.cc

    r10858 r11366  
    120120    DEBUGCALL(MATCH, PostList *, "LocalSubMatch::make_synonym_postlist", 
    121121              "[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()); 
    123123    AutoPtr<SynonymPostList> res(new SynonymPostList(or_pl, matcher)); 
    124124    AutoPtr<Xapian::Weight> wt; 
     
    164164        Xapian::weight weight = boolean ? 0 : wt->get_maxpart(); 
    165165        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 << ")"); 
    167167        term_info.insert(make_pair(query->tname, info)); 
    168168    } else if (!boolean) { 
    169169        i->second.termweight += wt->get_maxpart(); 
    170170        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 << ")"); 
    172172    } 
    173173