diff options
author | David Robillard <d@drobilla.net> | 2014-01-12 01:19:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-01-12 01:19:43 +0000 |
commit | 6fdfb81645889c4a81a6fce224663393eeee3f5d (patch) | |
tree | 8c99e96332321a5ea779df58b5534ca7003c930b | |
parent | 66db9ae34d29a955c4ce985c0e732bfb3ce3633c (diff) | |
download | ingen-6fdfb81645889c4a81a6fce224663393eeee3f5d.tar.gz ingen-6fdfb81645889c4a81a6fce224663393eeee3f5d.tar.bz2 ingen-6fdfb81645889c4a81a6fce224663393eeee3f5d.zip |
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
-rwxr-xr-x | scripts/ingenams | 2 | ||||
-rw-r--r-- | src/server/BlockFactory.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
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); } |