Index: NetworkEditor/src/MainWindow.cxx
===================================================================
--- NetworkEditor/src/MainWindow.cxx	(revision 12067)
+++ NetworkEditor/src/MainWindow.cxx	(working copy)
@@ -171,6 +171,7 @@
 	RunTimeFaustLibraryLoader faustLoader;
 	std::cout << "[FAUST] \tcompiling" << std::endl;
 	std::string faustDir=faustLoader.CompletePathFor("examples"); // get path for examples dir
+	std::cout<< "faustDir: "<<faustDir<<std::endl;
 	QDir examplesPath=QDir(faustDir.c_str());
 	if (not examplesPath.exists("ladspadir") and not examplesPath.mkdir("ladspadir")) // if directory for plugins compilation doesn't exist try to create it
 	{
Index: CLAM/src/Processing/Plugins/RunTimeFaustLibraryLoader.hxx
===================================================================
--- CLAM/src/Processing/Plugins/RunTimeFaustLibraryLoader.hxx	(revision 12067)
+++ CLAM/src/Processing/Plugins/RunTimeFaustLibraryLoader.hxx	(working copy)
@@ -21,11 +21,13 @@
 	virtual void Load() const
 	{
 		std::string examplesDir = CompletePathFor("examples/ladspadir");
+		std::cout<<"LoadLibrariesFromPath: "<<examplesDir<<std::endl;
 		LoadLibrariesFromPath(examplesDir);
 		RunTimeLibraryLoader::Load(); // needed??
 	}
 	void LoadPlugin(const std::string & pluginFullPath) const
 	{
+		std::cout<<"LoadPlugin: "<<pluginFullPath<<std::endl;
 		LoadLibrariesFromPath(pluginFullPath);
 	}
 
