mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 22:26:29 +01:00
slightly more informative message when a VAMP plugin is not found (though it might be found later, anyway)
git-svn-id: svn://localhost/ardour2/branches/3.0@9097 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e64486acfa
commit
61cbf95f99
1 changed files with 3 additions and 2 deletions
|
|
@ -358,13 +358,14 @@ PluginLoader::Impl::getLibraryPathForPlugin(PluginKey plugin)
|
|||
{
|
||||
if (m_pluginLibraryNameMap.find(plugin) == m_pluginLibraryNameMap.end()) {
|
||||
if (m_allPluginsEnumerated) return "";
|
||||
cerr << "plug not found enumerate" << endl;
|
||||
cerr << "plug " << plugin << " not found enumerate" << endl;
|
||||
enumeratePlugins(plugin);
|
||||
}
|
||||
if (m_pluginLibraryNameMap.find(plugin) == m_pluginLibraryNameMap.end()) {
|
||||
cerr << "plug not found enumerate" << endl;
|
||||
cerr << "plug " << plugin << " not found enumerate" << endl;
|
||||
return "";
|
||||
}
|
||||
cerr << "Did find plugin " << plugin << endl;
|
||||
return m_pluginLibraryNameMap[plugin];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue