diff options
-rw-r--r-- | OpenSim/Region/Environment/ModuleLoader.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/ModuleLoader.cs b/OpenSim/Region/Environment/ModuleLoader.cs index c64795b..fc11a50 100644 --- a/OpenSim/Region/Environment/ModuleLoader.cs +++ b/OpenSim/Region/Environment/ModuleLoader.cs | |||
@@ -185,9 +185,9 @@ namespace OpenSim.Region.Environment | |||
185 | pluginAssembly = Assembly.LoadFrom(dllName); | 185 | pluginAssembly = Assembly.LoadFrom(dllName); |
186 | LoadedAssemblys.Add(dllName, pluginAssembly); | 186 | LoadedAssemblys.Add(dllName, pluginAssembly); |
187 | } | 187 | } |
188 | catch (BadImageFormatException e) | 188 | catch (BadImageFormatException) |
189 | { | 189 | { |
190 | m_log.Verbose("MODULES", "The file [{0}] is not a module assembly.", e.FileName); | 190 | //m_log.Verbose("MODULES", "The file [{0}] is not a module assembly.", e.FileName); |
191 | } | 191 | } |
192 | } | 192 | } |
193 | 193 | ||