From 6fdfb81645889c4a81a6fce224663393eeee3f5d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 12 Jan 2014 01:19:43 +0000 Subject: Log how many plugins are loaded when loading is finished. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5307 a436a847-0d15-0410-975c-d299462d15a1 --- scripts/ingenams | 2 +- src/server/BlockFactory.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/ingenams b/scripts/ingenams index 3f7ee48f..453e555a 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -170,7 +170,7 @@ class Patch: def ladspa_module(world, mod_id, x, y, poly, lib, label): lv2_uri = '' - # Kludge LADSPA library and label to Fomp LV2 URIs where applicable + # Kludge LADSPA library and label to LV2 URIs where applicable if lib == 'blvco': lv2_uri = fomp_prefix + label.lower().replace('-', '_') elif lib == 'mvclpf24' or lib == 'mvchpf24': diff --git a/src/server/BlockFactory.cpp b/src/server/BlockFactory.cpp index c98de283..76bc5f4b 100644 --- a/src/server/BlockFactory.cpp +++ b/src/server/BlockFactory.cpp @@ -191,6 +191,8 @@ BlockFactory::load_lv2_plugins() } } + _world->log().info(fmt("Loaded %1% plugins\n") % _plugins.size()); + lilv_node_free(lv2_connectionOptional); } -- cgit v1.2.1