Mercurial > hg > svcore
comparison transform/CSVFeatureWriter.cpp @ 687:06f13a3b9e9e debug-output
Convert many cerrs to DEBUGs
author | Chris Cannam |
---|---|
date | Mon, 16 May 2011 17:19:09 +0100 |
parents | a41b4e30e3d9 |
children | 1424aa29ae95 |
comparison
equal
deleted
inserted
replaced
686:b4a8d8221eaf | 687:06f13a3b9e9e |
---|---|
62 void | 62 void |
63 CSVFeatureWriter::setParameters(map<string, string> ¶ms) | 63 CSVFeatureWriter::setParameters(map<string, string> ¶ms) |
64 { | 64 { |
65 FileFeatureWriter::setParameters(params); | 65 FileFeatureWriter::setParameters(params); |
66 | 66 |
67 cerr << "CSVFeatureWriter::setParameters" << endl; | 67 DEBUG << "CSVFeatureWriter::setParameters" << endl; |
68 for (map<string, string>::iterator i = params.begin(); | 68 for (map<string, string>::iterator i = params.begin(); |
69 i != params.end(); ++i) { | 69 i != params.end(); ++i) { |
70 cerr << i->first << " -> " << i->second << endl; | 70 cerr << i->first << " -> " << i->second << endl; |
71 if (i->first == "separator") { | 71 if (i->first == "separator") { |
72 m_separator = i->second.c_str(); | 72 m_separator = i->second.c_str(); |