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

afrisby
Adam Frisby 2007-11-18 18:26:51 +00:00
parent c40cfb01aa
commit b1b9f79a04
1 changed files with 2 additions and 2 deletions

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);
}
}