summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-10-07 03:28:02 +0200
committerRobin Gareus <robin@gareus.org>2015-10-07 03:28:02 +0200
commit2e8fb9207e1203802e915e7110e95882037202ad (patch)
tree5aa4fc021de1f637975c24a8f751974e06e601b4
parent477d1f3f42b125b42271c873277dff2236a297ae (diff)
print VST blacklist filename (for good measure)
-rw-r--r--libs/ardour/plugin_manager.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc
index cbf6994d65..42e8e3cbfe 100644
--- a/libs/ardour/plugin_manager.cc
+++ b/libs/ardour/plugin_manager.cc
@@ -276,7 +276,11 @@ PluginManager::refresh (bool cache_only)
if (Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
gchar *bl = NULL;
if (g_file_get_contents(fn.c_str (), &bl, NULL, NULL)) {
- PBD::info << _("VST Blacklist:") << "\n" << bl << "-----" << endmsg;
+ if (Config->get_verbose_plugin_scan()) {
+ PBD::info << _("VST Blacklist: ") << fn << "\n" << bl << "-----" << endmsg;
+ } else {
+ PBD::info << _("VST Blacklist:") << "\n" << bl << "-----" << endmsg;
+ }
g_free (bl);
}
}