From 2e8fb9207e1203802e915e7110e95882037202ad Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 7 Oct 2015 03:28:02 +0200 Subject: print VST blacklist filename (for good measure) --- libs/ardour/plugin_manager.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); } } -- cgit v1.2.3