Fix loading modules with alternate configurations and ports into ROBUST.

Make all current modules support the configuration name option
This commit is contained in:
Melanie
2009-09-29 09:44:12 +01:00
parent 6653a30487
commit 1096103d66
14 changed files with 75 additions and 55 deletions

View File

@@ -141,7 +141,9 @@ namespace OpenSim.Server.Base
}
catch (Exception e)
{
m_log.ErrorFormat("Error loading plugin from {0}, exception {1}", dllName, e.InnerException);
if (!(e is System.MissingMethodException))
m_log.ErrorFormat("Error loading plugin from {0}, exception {1}", dllName, e.InnerException);
return null;
}
return plug;