aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/ApplicationPlugins')
-rw-r--r--OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs b/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs
index 48cd1f9..03d3f6f 100644
--- a/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs
+++ b/OpenSim/ApplicationPlugins/ScriptEngine/ComponentFactory.cs
@@ -65,10 +65,11 @@ namespace OpenSim.ApplicationPlugins.ScriptEngine
65 { 65 {
66 componentAssembly = Assembly.LoadFrom(file); 66 componentAssembly = Assembly.LoadFrom(file);
67 } 67 }
68 catch (Exception e) 68 catch
69 { 69 {
70 m_log.ErrorFormat("[{0}] Error loading: \"{1}\".", Name, file); 70 m_log.ErrorFormat("[{0}] Error loading: \"{1}\".", Name, file);
71 } 71 }
72
72 if (componentAssembly != null) 73 if (componentAssembly != null)
73 { 74 {
74 try 75 try