Mercurial > hg > svapp
diff framework/TransformUserConfigurator.cpp @ 233:8aace2d9f1c2
Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author | Chris Cannam |
---|---|
date | Tue, 14 Jun 2011 15:27:12 +0100 |
parents | 8c13e8219903 |
children | 068235cf5bf7 |
line wrap: on
line diff
--- a/framework/TransformUserConfigurator.cpp Tue Jun 14 14:49:22 2011 +0100 +++ b/framework/TransformUserConfigurator.cpp Tue Jun 14 15:27:12 2011 +0100 @@ -37,12 +37,12 @@ { if (plugin && plugin->getType() == "Feature Extraction Plugin") { Vamp::Plugin *vp = static_cast<Vamp::Plugin *>(plugin); - DEBUG << "TransformUserConfigurator::getChannelRange: is a VP" << endl; + SVDEBUG << "TransformUserConfigurator::getChannelRange: is a VP" << endl; minChannels = vp->getMinChannelCount(); maxChannels = vp->getMaxChannelCount(); return true; } else { - DEBUG << "TransformUserConfigurator::getChannelRange: is not a VP" << endl; + SVDEBUG << "TransformUserConfigurator::getChannelRange: is not a VP" << endl; return TransformFactory::getInstance()-> getTransformChannelRange(identifier, minChannels, maxChannels); } @@ -119,7 +119,7 @@ static_cast<RealTimePluginInstance *>(plugin); if (effect && source) { - DEBUG << "Setting auditioning effect" << endl; + SVDEBUG << "Setting auditioning effect" << endl; source->setAuditioningEffect(rtp); } }