comparison runner/FeatureExtractionManager.cpp @ 265:0be716283c61 piper-nopiper

More error reporting updates
author Chris Cannam
date Wed, 23 Nov 2016 12:05:53 +0000
parents 68dc2d99a5b1
children 5ba121f3889e
comparison
equal deleted inserted replaced
264:3e85b5370690 265:0be716283c61
1025 1025
1026 // SVDEBUG << "writeFeatures: plugin " << plugin << " has transform: " << transform.toXmlString() << endl; 1026 // SVDEBUG << "writeFeatures: plugin " << plugin << " has transform: " << transform.toXmlString() << endl;
1027 1027
1028 if (transform.getSummaryType() == Transform::NoSummary && 1028 if (transform.getSummaryType() == Transform::NoSummary &&
1029 !m_summaries.empty()) { 1029 !m_summaries.empty()) {
1030 SVDEBUG << "transform has no summary, but summaries requested on command line, so going for it anyway" << endl; 1030 SVDEBUG << "writeFeatures: transform has no summary, but summaries requested on command line, so going for it anyway" << endl;
1031 } else if (transform.getSummaryType() != summaryType) { 1031 } else if (transform.getSummaryType() != summaryType) {
1032 // Either we're not writing a summary and the transform 1032 // Either we're not writing a summary and the transform
1033 // has one, or we're writing a summary but the transform 1033 // has one, or we're writing a summary but the transform
1034 // has none or a different one; either way, skip it 1034 // has none or a different one; either way, skip it
1035 SVDEBUG << "summary type differs from passed-in one " << summaryType << endl; 1035 SVDEBUG << "writeFeatures: transform summary type " << transform.getSummaryType() << " differs from passed-in one " << summaryType << ", skipping" << endl;
1036 continue; 1036 continue;
1037 } 1037 }
1038 1038
1039 string outputId = transform.getOutput().toStdString(); 1039 string outputId = transform.getOutput().toStdString();
1040 1040