Mercurial > hg > svcore
comparison plugin/PiperVampPluginFactory.cpp @ 1428:87ae75da6527
Convert some cerrs to SVCERRs. Apart from anything else, this makes MSVC2017 happy
author | Chris Cannam |
---|---|
date | Thu, 01 Mar 2018 14:43:40 +0000 |
parents | b5728e69802b |
children | 91bb68146dfc |
comparison
equal
deleted
inserted
replaced
1427:622d193a00dc | 1428:87ae75da6527 |
---|---|
111 sv_samplerate_t inputSampleRate) | 111 sv_samplerate_t inputSampleRate) |
112 { | 112 { |
113 Profiler profiler("PiperVampPluginFactory::instantiatePlugin"); | 113 Profiler profiler("PiperVampPluginFactory::instantiatePlugin"); |
114 | 114 |
115 if (m_origins.find(identifier) == m_origins.end()) { | 115 if (m_origins.find(identifier) == m_origins.end()) { |
116 cerr << "ERROR: No known server for identifier " << identifier << endl; | 116 SVCERR << "ERROR: No known server for identifier " << identifier << endl; |
117 SVDEBUG << "ERROR: No known server for identifier " << identifier << endl; | |
118 return 0; | 117 return 0; |
119 } | 118 } |
120 | 119 |
121 auto psd = getPluginStaticData(identifier); | 120 auto psd = getPluginStaticData(identifier); |
122 if (psd.pluginKey == "") { | 121 if (psd.pluginKey == "") { |