print VST blacklist filename (for good measure)
authorRobin Gareus <robin@gareus.org>
Wed, 7 Oct 2015 01:28:02 +0000 (03:28 +0200)
committerRobin Gareus <robin@gareus.org>
Wed, 7 Oct 2015 01:28:02 +0000 (03:28 +0200)
libs/ardour/plugin_manager.cc

index cbf6994d6595f8486d79d36e9f60deb881d9e3b3..42e8e3cbfeea72d2d9b94c491afdb3fa1555f048 100644 (file)
@@ -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);
                                }
                        }