Ignore:
Timestamp:
Nov 1, 2010, 5:33:42 AM (13 years ago)
Author:
Peter Johansson
Message:

remove debug output, and let test check that there is messages sent to standard error.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/TinyStats.cc

    r1234 r1256  
    4949  void TinyStats::init(const StatsCollection& sc)
    5050  {
    51     std::cerr << "init\n";
    5251    size_t max_lt = LineTypeParser::total;
    5352    typedef std::map<std::string, Stats*> StatsMap;
     
    5554    for (StatsMap::const_iterator i = stats_map.begin();i!=stats_map.end();++i){
    5655      const std::string& stats_type = i->first;
    57       std::cerr << stats_type << std::endl;
    5856      const Stats& stats = *(i->second);
    5957      std::map<std::string, Vector>& m = data_[stats_type];
     
    6159      for (std::set<std::string>::const_iterator author=stats.authors().begin();
    6260           author != stats.authors().end(); ++author) {
    63         std::cerr << "author: " << *author << std::endl;
    6461        Vector& v = m[*author];
    6562        v.resize(max_lt+1, 0);
Note: See TracChangeset for help on using the changeset viewer.