13
0

VST3: reduce debug output

This commit is contained in:
Robin Gareus 2020-09-30 17:10:24 +02:00
parent 00b5b61a43
commit e4cb7a14e8
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 2 additions and 2 deletions

View File

@ -1770,7 +1770,7 @@ PluginManager::vst3_discover (string const& path, bool cache_only)
static void vst3_scanner_log (std::string msg, std::string bundle_path)
{
PBD::error << string_compose ("VST<%1> scanner: %2", bundle_path, msg) << endmsg;
PBD::info << string_compose ("VST3<%1>: %2", bundle_path, msg) << endmsg;
}
bool

View File

@ -1676,7 +1676,7 @@ VST3PI::update_shadow_data ()
for (i = _ctrl_index_id.begin (); i != _ctrl_index_id.end (); ++i) {
Vst::ParamValue v = _controller->getParamNormalized (i->second);
if (_shadow_data[i->first] != v) {
#ifndef NDEBUG
#if 0 // DEBUG
printf ("VST3PI::update_shadow_data %d: %f -> %f\n", i->first,
_shadow_data[i->first], _controller->getParamNormalized (i->second));
#endif