aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/ModuleLoader.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-11-18 18:26:51 +0000
committerAdam Frisby2007-11-18 18:26:51 +0000
commitb1b9f79a040ef8ee4a02ce8d26518d2227770616 (patch)
tree7393f819ad90ff6553ed9fa0f4bda94992bf96f2 /OpenSim/Region/Environment/ModuleLoader.cs
parentflying in POS should be a bit smoother (diff)
downloadopensim-SC_OLD-b1b9f79a040ef8ee4a02ce8d26518d2227770616.zip
opensim-SC_OLD-b1b9f79a040ef8ee4a02ce8d26518d2227770616.tar.gz
opensim-SC_OLD-b1b9f79a040ef8ee4a02ce8d26518d2227770616.tar.bz2
opensim-SC_OLD-b1b9f79a040ef8ee4a02ce8d26518d2227770616.tar.xz
* Supressed the "not a module assembly" warning for verbosity reasons.
Diffstat (limited to 'OpenSim/Region/Environment/ModuleLoader.cs')
-rw-r--r--OpenSim/Region/Environment/ModuleLoader.cs4
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