aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Framework/ModuleLoader.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/ModuleLoader.cs b/OpenSim/Region/Framework/ModuleLoader.cs
index d393919..29b6bf4 100644
--- a/OpenSim/Region/Framework/ModuleLoader.cs
+++ b/OpenSim/Region/Framework/ModuleLoader.cs
@@ -218,9 +218,13 @@ namespace OpenSim.Region.Framework
218 } 218 }
219 } 219 }
220 } 220 }
221 catch (ReflectionTypeLoadException) 221 catch (Exception e)
222 { 222 {
223 m_log.InfoFormat("[MODULES]: Could not load types for [{0}].", pluginAssembly.FullName); 223 m_log.ErrorFormat(
224 "[MODULES]: Could not load types for [{0}]. Exception {1}", pluginAssembly.FullName, e);
225
226 // justincc: Right now this is fatal to really get the user's attention
227 throw e;
224 } 228 }
225 } 229 }
226 230