From 6f59288f9e5a6fa7b8bf8f70e89e141c8db5ee97 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 10 Sep 2014 20:44:17 +0200 Subject: [PATCH] print "Scanning folders for bundled LV2s" only once. --- libs/ardour/lv2_plugin.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index 54a8b03848..9a763bc2b3 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -113,7 +113,7 @@ public: LV2World (); ~LV2World (); - void load_bundled_plugins(); + void load_bundled_plugins(bool verbose=false); LilvWorld* world; @@ -2018,10 +2018,12 @@ LV2World::~LV2World() } void -LV2World::load_bundled_plugins() +LV2World::load_bundled_plugins(bool verbose) { if (!_bundle_checked) { - cout << "Scanning folders for bundled LV2s: " << ARDOUR::lv2_bundled_search_path().to_string() << endl; + if (verbose) { + cout << "Scanning folders for bundled LV2s: " << ARDOUR::lv2_bundled_search_path().to_string() << endl; + } vector plugin_objects; find_paths_matching_filter (plugin_objects, ARDOUR::lv2_bundled_search_path(), lv2_filter, 0, true, true, true); @@ -2078,7 +2080,7 @@ LV2PluginInfo::discover() { LV2World world; world.load_bundled_plugins(); - _world.load_bundled_plugins(); + _world.load_bundled_plugins(true); PluginInfoList* plugs = new PluginInfoList; const LilvPlugins* plugins = lilv_world_get_all_plugins(world.world); -- 2.30.2