* Supressed the "not a module assembly" warning for verbosity reasons.

This commit is contained in:
Adam Frisby
2007-11-18 18:26:51 +00:00
parent c40cfb01aa
commit b1b9f79a04

View File

@@ -185,9 +185,9 @@ namespace OpenSim.Region.Environment
pluginAssembly = Assembly.LoadFrom(dllName);
LoadedAssemblys.Add(dllName, pluginAssembly);
}
catch (BadImageFormatException e)
catch (BadImageFormatException)
{
m_log.Verbose("MODULES", "The file [{0}] is not a module assembly.", e.FileName);
//m_log.Verbose("MODULES", "The file [{0}] is not a module assembly.", e.FileName);
}
}