From b1849e7fde2c3d0e543c8855fd4a1fd85f23fe30 Mon Sep 17 00:00:00 2001 From: BlueWall Date: Tue, 11 Dec 2012 17:03:42 -0500 Subject: Hide some console output when initializing addin repository We do this in OpenSim.exe to hide output when unmanaged dll are scanned by mono addins. Libomv has hard-coded path to "." for the openjpeg libraries, causing output to the console when they are scanned. We will cover this up for now, then look at getting libomv to look for the libs outside the "." later. --- OpenSim/Framework/PluginManager.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Framework/PluginManager.cs') diff --git a/OpenSim/Framework/PluginManager.cs b/OpenSim/Framework/PluginManager.cs index 23d5945..00263f5 100644 --- a/OpenSim/Framework/PluginManager.cs +++ b/OpenSim/Framework/PluginManager.cs @@ -92,6 +92,7 @@ namespace OpenSim.Framework // Attempt to install the plugin disabled if (Install(ps, pack) == true) { + MainConsole.Instance.Output("Ignore the following error..."); PluginRegistry.Update(ps); Addin addin = PluginRegistry.GetAddin(aentry.Addin.Id); PluginRegistry.DisableAddin(addin.Id); @@ -479,6 +480,7 @@ namespace OpenSim.Framework ConsoleProgressStatus ps = new ConsoleProgressStatus(false); if (!AddinManager.AddinEngine.IsAddinLoaded(addin.Id)) { + MainConsole.Instance.Output("Ignore the following error..."); AddinManager.Registry.Rebuild(ps); AddinManager.AddinEngine.LoadAddin(ps, addin.Id); } -- cgit v1.1