diff 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
line wrap: on
line diff
--- a/runner/FeatureExtractionManager.cpp	Wed Nov 23 10:42:35 2016 +0000
+++ b/runner/FeatureExtractionManager.cpp	Wed Nov 23 12:05:53 2016 +0000
@@ -1027,12 +1027,12 @@
 
         if (transform.getSummaryType() == Transform::NoSummary &&
             !m_summaries.empty()) {
-            SVDEBUG << "transform has no summary, but summaries requested on command line, so going for it anyway" << endl;
+            SVDEBUG << "writeFeatures: transform has no summary, but summaries requested on command line, so going for it anyway" << endl;
         } else if (transform.getSummaryType() != summaryType) {
             // Either we're not writing a summary and the transform
             // has one, or we're writing a summary but the transform
             // has none or a different one; either way, skip it
-            SVDEBUG << "summary type differs from passed-in one " << summaryType << endl;
+            SVDEBUG << "writeFeatures: transform summary type " << transform.getSummaryType() << " differs from passed-in one " << summaryType << ", skipping" << endl;
             continue;
         }