diff plugin/FeatureExtractionPluginFactory.cpp @ 1264:a99641535e02 3.0-integration

Debug output improvements, and make the checker actually attempt to call the descriptor function for known plugin types
author Chris Cannam
date Wed, 16 Nov 2016 16:12:42 +0000
parents d45a16c232bd
children 70e172e6cc59
line wrap: on
line diff
--- a/plugin/FeatureExtractionPluginFactory.cpp	Tue Nov 15 16:54:02 2016 +0000
+++ b/plugin/FeatureExtractionPluginFactory.cpp	Wed Nov 16 16:12:42 2016 +0000
@@ -34,17 +34,14 @@
 
 #ifdef HAVE_PIPER
         if (Preferences::getInstance()->getRunPluginsInProcess()) {
-            SVDEBUG << "FeatureExtractionPluginFactory: creating native instance"
-                    << endl;
+            SVDEBUG << "FeatureExtractionPluginFactory: in-process preference set, using native factory" << endl;
             instance = new NativeVampPluginFactory();
         } else {
-            SVDEBUG << "FeatureExtractionPluginFactory: creating Piper instance"
-                    << endl;
+            SVDEBUG << "FeatureExtractionPluginFactory: in-process preference not set, using Piper factory" << endl;
             instance = new PiperVampPluginFactory();
         }
 #else
-        SVDEBUG << "FeatureExtractionPluginFactory: no Piper support enabled,"
-                << " creating native instance" << endl;
+        SVDEBUG << "FeatureExtractionPluginFactory: no Piper support compiled in, using native factory" << endl;
         instance = new NativeVampPluginFactory();
 #endif
     }