Send LV2 notes to the info stream.
authorCarl Hetherington <carl@carlh.net>
Sat, 9 Jun 2012 21:06:05 +0000 (21:06 +0000)
committerCarl Hetherington <carl@carlh.net>
Sat, 9 Jun 2012 21:06:05 +0000 (21:06 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12632 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/lv2_plugin.cc

index e9ec835ef106e5a107fdfcba707429ab31f47643..6c8fb3c9db3d028c3a570262dd38fa8992254368 100644 (file)
@@ -1554,7 +1554,7 @@ LV2PluginInfo::discover()
        PluginInfoList*    plugs   = new PluginInfoList;
        const LilvPlugins* plugins = lilv_world_get_all_plugins(_world.world);
 
-       cerr << "LV2: Discovering " << lilv_plugins_size(plugins) << " plugins" << endl;
+       info << "LV2: Discovering " << lilv_plugins_size(plugins) << " plugins" << endmsg;
 
        LILV_FOREACH(plugins, i, plugins) {
                const LilvPlugin* p = lilv_plugins_get(plugins, i);
@@ -1605,7 +1605,5 @@ LV2PluginInfo::discover()
                plugs->push_back(info);
        }
 
-       cerr << "Done LV2 discovery" << endl;
-
        return plugs;
 }